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
resync
[mcs.git]
/
errors
/
cs0143.cs
blob
f3f2b5061bd40f3b9c32b5f1db909e6829cfa026
1
// cs0143.cs: The type `int' has no constructors defined
2
// Line: 8
3
4
class
C
5
{
6
static void
Main
()
7
{
8
int
i
=
new int
(
1
);
9
}
10
}
11