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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs1644-12.cs
blob
002fe3896f0b96705bd61873f16f5e10726ae7e3
1
// CS1644: Feature `optional parameter' cannot be used because it is not part of the C# 2.0 language specification
2
// Line: 7
3
// Compiler options: -langversion:ISO-2
4
5
public class
C
6
{
7
public
C
(
int
a
=
0
)
8
{
9
}
10
}