[Mono.Profiler.Log] Reverse managed backtrace in SampleHitEvent's
[mono.git] / mcs / errors / cs0139.cs
1 // CS0139: No enclosing loop out of which to break or continue
2 // Line: 6
3 class X {
4         void A ()
5         {
6                 continue;
7         }
8 }