Remove some junk I left by accident
[mono.git] / mono / tests / verifier / invalid_call_no_method.il
1 // Invalid CIL which breaks the ECMA-335,III,3.19 rule. 
2 // This CIL should fail verification by a conforming CLI verifier.
3 #FIXME how to tell ilasm to emit such method?
4
5 .method public static int32 Main() cil managed
6 {
7         .entrypoint
8         .maxstack 1
9         call int32 f()
10         ret
11 }
12