repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add test to confirm behavior of Control.SetVisibleCore, and remove some redundant...
[mcs.git]
/
tests
/
gtest-139.cs
blob
7b187e147bdfbfe392f908ae1c99f7faff562687
1
using
System
;
2
3
class
X
4
{
5
static void
Main
()
6
{
7
bool
?
a
=
true
;
8
int
?
b
=
a
?
3
:
4
;
9
Console
.
WriteLine
(
b
);
10
}
11
}