Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1729-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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");
        }
}