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
/
cs0019-41.cs
blob
b7f686e8879f0b942491635cb5c67760662ec159
1
// CS0019: Operator `??' cannot be applied to operands of type `int' and `int'
2
// Line: 8
3
class
X
4
{
5
static void
Main
()
6
{
7
int
a
=
5
;
8
int
b
=
a
??
3
;
9
}
10
}