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
/
cs0649-3.cs
blob
8d65eaf344885738225dbf9cc7e3953955a3d05a
1
// CS0649: Field `X.e' is never assigned to, and will always have its default value `0'
2
// Line: 10
3
// Compiler options: -warnaserror -warn:4
4
5
using
System
;
6
class
X
{
7
E e
;
8
9
E Value
{
10
get
{
11
return
e
;
12
}
13
}
14
}
15
16
enum
E
17
{
18
Foo
19
}