summaryrefslogtreecommitdiff
path: root/tests/annotations
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2016-11-11 21:59:05 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2016-11-11 22:21:57 +0100
commit9eebc7c324ad8554b68faa8277cafb37844d0d3e (patch)
treef0d64190da1a4a713237738eeedba4317e57e920 /tests/annotations
parenta9677aa57de0fe0fd5eb23938f562e4ba9b0556b (diff)
downloadvala-9eebc7c324ad8554b68faa8277cafb37844d0d3e.tar.gz
ccode: Fix and disable deprecating EnumValue
This still requires GCC 6.0 and later to work. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47043
Diffstat (limited to 'tests/annotations')
-rw-r--r--tests/annotations/deprecated.vala4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/annotations/deprecated.vala b/tests/annotations/deprecated.vala
index 91ed21ee8..0968b1538 100644
--- a/tests/annotations/deprecated.vala
+++ b/tests/annotations/deprecated.vala
@@ -32,7 +32,9 @@ void test_class_property () {
[Version (deprecated = true)]
enum FooEnum {
[Version (deprecated = true)]
- BAR,
+ BAR = 0,
+ [Version (deprecated = true)]
+ FOO,
BAZ;
}