w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs8311.cs
blob5b35229442d9e60b9d433ae5b3dfb93364b17135
1 // CS8311: Cannot use a default literal as an argument to a dynamically dispatched operation
2 // Line: 10
3 // Compiler options: -langversion:latest
5 class C
7 static void Main ()
9 dynamic d = null;
10 d.M2 (default);