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

cs0685.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9b5200e6b8cf5ed56a5db349768b876545e86f9 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0685.cs: Conditional method 'MainClass.Method(out int)' cannot have an out parameter
// Line: 6

class MainClass {
        [System.Diagnostics.Conditional("DEBUG")]
        public void Method (out int o)
        {
            o = 3;
        }
}