[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0176-8.cs
blobe9a94d539a6936a9a7eca51872c35f4dd0f61bae
1 // CS0176: Static member `string.Empty' cannot be accessed with an instance reference, qualify it with a type name instead
2 // Line: 9
4 class X
6 public static void Main ()
8 string y = null;
9 var x = y?.Empty;