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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs0184-7.cs
blob
36e144ec49717fce49bf4019ed237085caa745bc
1
// CS0184: The given expression is never of the provided (`object') type
2
// Line: 13
3
// Compiler options: -warnaserror -warn:1
4
5
public class
Test
6
{
7
static void
Foo
()
8
{
9
}
10
11
public static void
Main
()
12
{
13
bool
b
=
Foo
()
is object
;
14
}
15
}