repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 0.41.92
[vala-gnome.git]
/
tests
/
enums
/
bug763831.vala
blob
519fdf33f6214826b858123ec62010c689142ce5
1
[
Flags
]
2
enum
Foo
{
3
TEST
=
1
<<
0
;
4
}
5
6
enum
Bar
{
7
TEST
=
1
<<
0
;
8
}
9
10
void
main
() {
11
Foo
.
TEST
.
to_string
();
12
Bar
.
TEST
.
to_string
();
13
}