[runtime] Fix "make distcheck"
[mono-project.git] / mono / tests / verifier / valid_merge_second_value_is_base_type.cs
blob22baa877825001bd72d520c5f3aec7fe3b290f88
1 using System;
2 using System.Reflection;
3 using System.Reflection.Emit;
5 public class Parent {
9 public class Foo : Parent {
13 public class Bar : Parent {
16 class Driver {
19 public static int Main (string[] args) {
20 Parent p;
21 Foo f = new Foo();
22 Parent b = new Parent();
23 p = args == null? (Parent) f : (Parent) b;
25 return 1;