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

cs0177.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0aaa52299d6bfe14ebd7659b3417b1604ba80bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0177.cs: The out parameter `display' must be assigned to before control leaves the current method
// Line: 5

class ClassMain {
        void Error(out bool display) {
        }
    
        public static void Main() {
        }
}