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
/
cs0822.cs
blob
023ac1c14532256a5ec2bfed4a56a654023fb136
1
// CS0822: An implicitly typed local variable cannot be a constant
2
// Line: 9
3
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
const var
v
=
0
;
10
}
11
}
12