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-8.cs
blob
52994f2e951b3e5de6a5e77c91a8801dd80d7140
1
// CS1729: The type `CS0143Test.A' does not contain a constructor that takes `2' arguments
2
// Line: 13
3
4
namespace
CS0143Test
5
{
6
public class
A
7
{
8
static void
Main
()
9
{
10
string
b
=
"text"
;
11
int
c
=
2
;
12
13
A a
=
new
A
(
b
,
c
);
14
}
15
}
16
}