New test.
[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
4 .method public static int32 Main() cil managed
5 {
6         .entrypoint
7         .maxstack 1
8         call int32 f()
9         ret
10 }