[System] Tweak socket test
[mono-project.git] / mono / tests / vtype.cs
blob2a2dc91536a33e9981ce74973f030b6729a657c0
1 using System;
3 namespace T {
5 public class Test {
7 public static int Main () {
8 int i = 12;
9 object o = i;
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;