Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0219-5.cs
1 // CS0219: The variable `next' is assigned but its value is never used
2 // Line: 9
3 // Compiler options: -warn:3 -warnaserror
4
5 class A
6 {
7         public static void Main ()
8         {
9                 int n\U00000065xt = 0;
10         }
11 }