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

cs1501.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10342181e2885a9bb96e02c839a44338dfddf102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs1501.cs: No overload for method `Base' takes `0' arguments
// Line: 12
class Base {
	Base (string x)
	{
	}
}

// Notice how there is no invocation to "base (something)"

class Derived : Base {
	Derived ()
	{
	}
}