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
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
test-609.cs
blob
a1019a2d8a0ba6f8f3cbf19b099e8f34dc21a4aa
1
using
System
;
2
3
class
Test
4
{
5
public static int
Main
()
6
{
7
if
(!(
"aoeu"
is
String
))
8
return
1
;
9
10
if
(!(
"aoeu"
is
Object
))
11
return
2
;
12
13
return
0
;
14
}
15
}