w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0173-4.cs
blobdf1408f40e53c17c58933bbce16dbe664b3a8e28
1 // CS0173: Type of conditional expression cannot be determined because there is no implicit conversion between `null' and `null'
2 // Line: 8
4 class X
6 static void Main (string[] args)
8 bool b = args.Length > 0 ? null : null;