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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs1644-21.cs
blob
370815a0f171481571096501d7ba46b1c9c2f3f4
1
// CS1644: Feature `default value expression' cannot be used because it is not part of the C# 1.0 language specification
2
// Line: 7
3
// Compiler options: -langversion:ISO-1
4
5
class
Test
6
{
7
int
i
=
default
(
int
);
8
}