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-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0241.cs
blob
d6dadee015970ca875658d5a6af8a01ba21f7bcd
1
// cs0241.cs: Default parameter specifiers are not permitted
2
// Line: 5
3
4
class
TestClass
{
5
public
TestClass
(
int value
=
0
) {
6
}
7
}