Remove excessive shortcut key matching in ToolStrip
[mono.git] / mcs / errors / cs0177-99.cs
1 // CS0177: The out parameter `o' must be assigned to before control leaves the current method
2 // Line: 4
3
4 class Test(out int o) 
5 {
6 }