blob: b222bbede90583b8a0e3c69f87ac7f1a9939941a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0177: 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() {
}
}
|