w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs8189.cs
blob909ec3b4fcf4f5e92292491b88932382ba828257
1 // CS8189: By reference return delegate does not match `C.D()' return type
2 // Line: 15
4 class C
6 delegate ref int D ();
8 static int M ()
10 return 1;
13 static void Main ()
15 D d = new D (M);