Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / vtype.cs
1 using System;
2
3 namespace T {
4
5         public class Test {
6
7                 public static int Main () {
8                         int i = 12;
9                         object o = i;
10                         
11                         if (i.ToString () != "12")
12                                 return 1;
13                         if (((Int32)o).ToString () != "12")
14                                 return 2;
15                         if (o.ToString () != "12")
16                                 return 3;
17                         return 0;
18                 }
19         }
20 }