new test
[mono.git] / mcs / errors / cs0177.cs
1 // cs0177.cs: The out parameter 'display' must be assigned to before control leaves the current method\r
2 // Line: 5\r
3 \r
4 class ClassMain {\r
5         void Error(out bool display) {\r
6         }\r
7     \r
8         public static void Main() {\r
9         }\r
10 }\r
11 \r