(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1502.cs
blobcf646b59619aa5e67a86fe0b3adf7a5be37d42ba
1 // cs1502.cs: The method has incorrect arguments, passing out to something expecting ref
2 // Line: 8
3 class X {
4 public void foo (ref int blah) {}
6 public void bar (ref int baz)
8 foo(out baz);
11 static void Main ()