Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1041.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71defe7ccbcbc5fae21a5e9545994854f45f98fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// warning CS1041: Identifier expected, 'true' is a keyword
// warning CS1041: Identifier expected, 'catch' is a keyword
// Compiler options: -warnaserror -doc:dummy.xml

/// <summary><see cref="true" />, <see cref="catch" /></summary>
public enum Test {
        /// <summary>Maybe</summary>
        @true,

        /// <summary>Maybe</summary>
        @catch
}

class Foo { static void Main () {} }