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

cs0023-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e57935cb8bd0334a6393257a2d2337c2b04b3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0023-2.cs: The `+' operator cannot be applied to operand of type `bool'
// Line : 6

class X {
        static void Main () {
                bool b = +true;
        }
}