SqlBulkCopy Implementation
[mono.git] / mcs / errors / cs0162-7.cs
1 // CS0162: Unreachable code detected
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
4
5 // this requires a multi-pass algorithm for unreachable code detection
6 // punting for now
7
8 class Foo {
9         static void Main ()
10         {
11                 goto skip;
12         a:
13                 goto a;
14         skip:
15                 return;
16         }
17 }