2010-06-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mono / tests / valuetype-gettype.cs
blob673f341e0cc8a1e4ca95ef796429955cd1238385
1 using System;
3 namespace Test {
4 struct val {
5 int t;
7 val (int v) {
8 t = v;
11 public static int Main() {
12 val v = new val (1);;
13 Console.WriteLine (v.ToString());
14 return 0;