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-2.cs
blob
d27e1d85033fcfa8c9f52a247f367c05a09515a6
1
// CS0649: Field `C.s' is never assigned to, and will always have its default value `null'
2
// Line: 7
3
// Compiler options: -warnaserror -warn:4
4
5
class
C
6
{
7
int
?
s
;
8
9
void
Test
()
10
{
11
System
.
Console
.
WriteLine
(
s
==
null
);
12
}
13
}