[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0201-7.cs
blob1cefa3e7ec1267a520577aa490e8df663aae3c23
1 // CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2 // Line: 10
4 using System.Linq;
6 class C
8 public static void Main ()
10 from s in "string" select s;