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
[tests] Test loading references from LoadFrom and LoadFile contexts
[mono-project.git]
/
mono
/
tests
/
array3.cs
blob
ce31de2e9fc1664d617ed354c05d74d856401eab
1
2
3
using
System
;
4
5
6
public class
Test
{
7
8
9
public static int
Main
() {
10
object
[]
array
=
new object
[
10
];
11
12
if
(
array
.
GetType
().
IsPublic
)
13
return
0
;
14
15
return
1
;
16
}
17
18
}
19