[Mono.Profiler.Log] Reverse managed backtrace in SampleHitEvent's
[mono.git] / mcs / errors / cs0841-3.cs
1 // CS0841: A local variable `y' cannot be used before it is declared
2 // Line: 8
3
4 class X
5 {
6    static void y () { }
7    static void Main () {
8      y ();
9      int y = 5;
10    }
11 }