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] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs8312.cs
blob
d2ad3f52f024efa25d31bd304726baeda50659fb
1
// CS8312: Use of default literal is not valid in this context
2
// Line: 9
3
// Compiler options: -langversion:latest
4
5
class
C
6
{
7
static void
Main
()
8
{
9
foreach
(
var
x
in default
) {
10
}
11
}
12
}