Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0177.cs
1 // CS0177: The out parameter `display' must be assigned to before control leaves the current method
2 // Line: 5
3
4 class ClassMain {
5         void Error(out bool display) {
6         }
7     
8         public static void Main() {
9         }
10 }
11