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
/
cs0184-3.cs
blob
7b049b059a7fcf7007dcff4bb0ce876988dd4f4b
1
// CS0184: The given expression is never of the provided (`decimal') type
2
// Line: 7
3
// Compiler options: -warnaserror -warn:1
4
5
class
A
6
{
7
static void
Main
()
8
{
9
System
.
Console
.
WriteLine
(
1
is decimal
);
10
}
11
}