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-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1729-8.cs
blob
c61777332fc3758d852ed78b25910089864e5bfa
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
}