2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1729.cs
blob41d528efa2e9ef5bc61d56f61f97780be5bd4e44
1 // CS1729: The type `C.S' does not contain a constructor that takes `3' arguments
2 // Line: 15
4 class C
6 struct S
8 public S (int i)
13 static void Main ()
15 S i = new S (1,1,1);