2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0162-5.cs
blob837370b82fb29f9d4ba494777e29c300411bc5d3
1 // cs0162-5.cs: Unreachable code detected
2 // Line: 12
3 // Compiler options: -warnaserror
5 using System;
7 public class Driver
9 public static void Main ()
11 int yyTop = 0;
12 for (; ; ++yyTop) {
13 if (yyTop > 0)
14 break;
15 else
16 return;