Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git] / mcs / errors / cs0037.cs
blob988137b5c0060525a8b6b4cf6eac4eae8a3aeffd
1 // CS0037: Cannot convert null to `S' because it is a value type
2 // Line: 10
3 struct S {
4 int a;
7 class X {
8 static void Main ()
10 S s = (S) null;