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
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs1729-11.cs
blob
9a36998f34da54a4cafa0cf7dd13a50a34aef413
1
// CS1729: The type `int' does not contain a constructor that takes `1' arguments
2
// Line: 8
3
4
class
C
5
{
6
static void
Main
()
7
{
8
int
i
=
new int
(
1
);
9
}
10
}
11