repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
gtest-135.cs
blob
46b304a961931924de7659a5395205d30688386b
1
using
System
;
2
3
class
X
4
{
5
static void
Main
()
6
{
7
int
?
a
=
null
;
8
int
b
=
3
;
9
long
?
c
=
a
;
10
Console
.
WriteLine
(
c
);
11
long
?
d
=
b
;
12
byte
?
f
= (
byte
?)
d
;
13
}
14
}