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

cs1501-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb96d7738a6d4e683a28f293e8e24a148b5f14a3 (plain)
1
2
3
4
5
6
7
8
9
10
// cs1501-3.cs: No overload for method `X' takes `2' arguments
// Line: 8

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