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
2010-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1729.cs
blob
41d528efa2e9ef5bc61d56f61f97780be5bd4e44
1
// CS1729: The type `C.S' does not contain a constructor that takes `3' arguments
2
// Line: 15
3
4
class
C
5
{
6
struct
S
7
{
8
public
S
(
int
i
)
9
{
10
}
11
}
12
13
static void
Main
()
14
{
15
S i
=
new
S
(
1
,
1
,
1
);
16
}
17
}
18