summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1729-3.cs
blob: f8285c401a370c989047df2bd0def0477d78d478 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1729: The type `X' does not contain a constructor that takes `2' arguments
// Line: 8

public struct X {
        public X(int i) { }
        
        public static void Main() {
                X x = new X("foo", "bar");
        }
}