Hi Peter,
This code works fine on my Windows 10 machine:
# install.packages("conflicted")
library(conflicted)
library(dplyr)
# This causes the intentional error - forcing you to be more specific:
iris %>% filter(Sepal.Length > 7.1)
# Both of these work
dplyr::filter(iris, Sepal.Length > 7.1)
stats::filter(1:20, rep(1, 3))
If this code causes RStudio to crash on your machine, I suggest you report a bug at
https://github.com/r-lib/conflicted.
You will probably need to provide the output produced from running
sessionInfo()
HTH