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

cs0173-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e88df91f1d83fdefccbc40e5dff0524f09aa5da0 (plain)
1
2
3
4
5
6
7
8
9
// cs0173.cs: Type of conditional expression can't be determined because there is no implicit conversion between 'int' and '<null>'
// Line: 29

public class MainClass {
        public static void Main() {
                bool result = false;
                System.Console.WriteLine (result ? 1 : null);
	}
}