[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs1061-13.cs
blob4d3a8307b3ec13c816b7952c20dc8bab45d3b19a
1 // CS1061: Type `string' does not contain a definition for `Where' and no extension method `Where' of type `string' could be found. Are you missing `System.Linq' using directive?
2 // Line: 8
4 public class M
6 public static void Main ()
8 var a = "ababab".Where (l => l == 'b');