[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0201-4.cs
1 // CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2 // Line: 8
3
4 class MainClass
5 {
6         public static void Main ()
7         {
8                 for (int i = 0; i++; i < 8) {
9                 }
10         }
11 }
12