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: e9a8573c8266ef950827934c3a59f20d78785bf9 (plain)
1
2
3
4
5
6
7
8
// CS1501: No overload for method 'X' takes '2' arguments
public struct X {
        public X(int i) { }
        
        public static void Main() {
                X x = new X("foo", "bar");
        }
}