repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs1729-10.cs
blob
2912f11be2111ef151884f3bceddeb1fa7abe5f2
1
// CS1729: The type `Base' does not contain a constructor that takes `0' arguments
2
// Line: 12
3
class
Base
{
4
Base
(
string
x
)
5
{
6
}
7
}
8
9
// Notice how there is no invocation to "base (something)"
10
11
class
Derived
:
Base
{
12
Derived
()
13
{
14
}
15
}