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
[Wasm] Fix memory override in mono_wasm_add_assembly
[mono-project.git]
/
mcs
/
tests
/
test-97.cs
blob
32dc9d5ec467b9071267db7a4fbd9c0d6399dbf8
1
//
2
// This test excercises the simple name lookups on
3
// unfinished enumerations.
4
//
5
6
public enum
FL
{
7
EMPTY
=
0
,
8
USHIFT
=
11
,
9
USER0
= (
1
<<(
USHIFT
+
0
)),
10
}
11
12
class
X
{
13
14
public static int
Main
()
15
{
16
return
0
;
17
}
18
}