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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
gtest-601.cs
blob
e15d908cb5a22067a98e32693c34b9e0c2e107a8
1
using
System
;
2
3
public class
TestProgram
4
{
5
public static void
Main
()
6
{
7
IMyStruct myStruct
=
null
;
8
MyStruct
?
structValue
;
9
10
structValue
= (
MyStruct
?)
myStruct
;
11
}
12
}
13
14
public struct
MyStruct
:
IMyStruct
15
{
16
}
17
18
public interface
IMyStruct
19
{
20
}