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: 6eaa6ba5e8c9dc6445b75012d7e69e714a84765a (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() {
        }
}