Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git] / mcs / errors / cs0246-8.cs
blob126b707b195cfb1902ae84a1c0ceac3953519ffb
1 // CS0246: The type or namespace name `Reflection' could not be found. Are you missing an assembly reference?
2 // Line: 7
3 using System;
5 class foo {
6 static void Main(string[] args ) {
7 Reflection.ConstructorInfo ci;
9 }