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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
dtest-052-lib.cs
blob
e862269343dff7aa0a5f20e2323df95cc45e82ae
1
// Compiler options: -t:library
2
3
public interface
IG
<
T
>
4
{
5
T Value { get; }
6
}
7
8
public class
DynamicReference
9
{
10
public
IG
<
dynamic
>
DynType
;
11
public
IG
<
dynamic
[][]>
DynArray
;
12
}