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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
test-112.cs
blob
552cc0a6901347f36fced13b5ee4c17837695ce4
1
//
2
// This tests the use of an array indexer on value exprclasses
3
// and not only variables
4
//
5
class
X
{
6
static int
[]
g
()
7
{
8
int
[]
x
=
new int
[
5
];
9
x
[
1
] =
10
;
10
return
x
;
11
}
12
13
public static int
Main
()
14
{
15
if
(
g
() [
1
] ==
10
)
16
return
0
;
17
return
1
;
18
}
19
}