Merge pull request #1319 from directhex/systemwide-per-arch-aot-cache
[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 // Compiler options: -langversion:experimental
4
5 class Test(out int o) 
6 {
7 }