[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1001.cs
1 // CS1001: Unexpected symbol `)', expecting identifier
2 // Line: 6
3
4 class T {
5         // Change (args) to (string args) to fix it
6         public static int Main (args)
7         {
8         }
9 }