fix run-test
[mcs.git] / errors / cs1729-3.cs
blobf8285c401a370c989047df2bd0def0477d78d478
1 // CS1729: The type `X' does not contain a constructor that takes `2' arguments
2 // Line: 8
4 public struct X {
5 public X(int i) { }
7 public static void Main() {
8 X x = new X("foo", "bar");