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

cs0578.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 828e47597fca3740f58e0ff00d5d337564fd69be (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0578.cs: Conditional not valid on `MainClass.Foo()' because its return type is not void
// Line: 10

class MainClass {
        [System.Diagnostics.Conditional("DEBUG")] bool Foo() { 
                return false;
        }
            
        public static void Main () {}
}