71defe7ccbcbc5fae21a5e9545994854f45f98fd
[mono.git] / mcs / errors / cs1041.cs
1 // warning CS1041: Identifier expected, 'true' is a keyword
2 // warning CS1041: Identifier expected, 'catch' is a keyword
3 // Compiler options: -warnaserror -doc:dummy.xml
4
5 /// <summary><see cref="true" />, <see cref="catch" /></summary>
6 public enum Test {
7         /// <summary>Maybe</summary>
8         @true,
9
10         /// <summary>Maybe</summary>
11         @catch
12 }
13
14 class Foo { static void Main () {} }