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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-605.cs
blob
082983d6053f87e10e76d003258b1f5e5f1cc3cd
1
using
System
;
2
3
public class
NullableAnd
4
{
5
static object
Foo
(
object
l
,
object
r
)
6
{
7
return
(
Boolean
?)
l
& (
Boolean
?)
r
;
8
}
9
10
public static int
Main
()
11
{
12
var
g
=
Foo
(
true
,
true
);
13
Console
.
WriteLine
(
g
);
14
if
((
bool
?)
g
!=
true
)
15
return
1
;
16
17
return
0
;
18
}
19
}