Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / gcs1676.cs
blob47f5f8929394f49f1d859ea1fc6f818a01baa22d
1 // CS1676: Parameter `1' must be declared with the `out' keyword
2 // Line: 10
4 class C
6 delegate int D (out int i);
8 public static void Main ()
10 D d = a => 1;