Align libgc vcxproj with makefile.
[mono.git] / mono / tests / valuetype-gettype.cs
1 using System;
2
3 namespace Test {
4         struct val {
5                 int t;
6
7                 val (int v) {
8                         t = v;
9                 }
10
11                 public static int Main() {
12                         val v = new val (1);;
13                         Console.WriteLine (v.ToString());
14                         return 0;
15                 }
16         }
17 }