w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0201-6.cs
blob57733dad5730f1838e77129ac8b1fa8fda40bb12
1 // CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2 // Line: 13
4 class C<T>
6 static T Test ()
8 return default (T);
11 public static void Main ()
13 Test ().Foo;