repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs1729-13.cs
blob
3ef7376bfde84ed1cc3d7a0bf82aa8ff20bd5079
1
// CS1729: The type `object' does not contain a constructor that takes `1' arguments
2
// Line: 8
3
4
using
System
;
5
6
class
C
7
{
8
int
a
=
"a"
;
9
10
public
C
(
string
s
)
11
:
base
(
1
)
12
{
13
}
14
15
public
C
(
int
i
)
16
:
base
(
i
)
17
{
18
}
19
}