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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0815-9.cs
blob
f54703349beb3ec5368cc36cb07238a43b655021
1
// CS0815: An implicitly typed local variable declaration cannot be initialized with `default'
2
// Line: 9
3
// Compiler options: -langversion:latest
4
5
static class
X
6
{
7
public static void
Main
()
8
{
9
var
x
=
default
;
10
}
11
}