New test.
[mono.git] / mcs / errors / cs0143.cs
1 // cs0143.cs: The type `int' has no constructors defined
2 // Line: 8
3
4 class C
5 {
6         static void Main ()
7         {
8                 int i = new int(1);
9         }
10 }
11