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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1729-5.cs
blob
c05c492886d8c59c47e8e577ff759c20008d2bbd
1
// CS1729: The type `C' does not contain a constructor that takes `2' arguments
2
// Line: 16
3
4
class
C
5
{
6
public
C
(
int
i
)
7
{
8
}
9
}
10
11
public class
Blah
12
{
13
public static void
Main
()
14
{
15
dynamic
d
=
1
;
16
var
r
=
new
C
(
1
,
d
);
17
}
18
}