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
/
cs0472-6.cs
blob
d7d2556ef1c4d299acd4e347ff03fb4f3100e599
1
// CS0472: The result of comparing value type `int' with null is always `false'
2
// Line: 12
3
// Compiler options: -warnaserror
4
5
using
System
;
6
7
class
X
8
{
9
public static void
Main
()
10
{
11
int
i
=
0
;
12
var
x
=
i
==
default
(
byte
?);
13
}
14
}