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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-initialize-09.cs
blob
0027dd5fef87039514796e6a843c8a53caa58b29
1
class
Test
2
{
3
struct
Foo { public int[] Data; }
4
5
public static int
Main
()
6
{
7
int
[]
res
=
new
Foo
()
{ Data = new int[] { 1, 2, 3 }
}.
Data
;
8
if
(
res
.
Length
!=
3
)
9
return
1
;
10
11
return
0
;
12
}
13
}