blob: 888edddac463d3c0020032febd6c2d1563c179d4 [file] [log] [blame]
Erik Pilkington3e4e3b12018-09-05 19:13:27 +00001// RUN: %clang_cc1 -verify -Wswitch -triple x86_64-apple-macosx10.12 %s
2
3enum SwitchOne {
4 Unavail __attribute__((availability(macos, unavailable))),
5};
6
7void testSwitchOne(enum SwitchOne so) {
8 switch (so) {} // no warning
9}
10
11enum SwitchTwo {
12 Ed __attribute__((availability(macos, deprecated=10.12))),
13 Vim __attribute__((availability(macos, deprecated=10.13))),
14 Emacs,
15};
16
17void testSwitchTwo(enum SwitchTwo st) {
18 switch (st) {} // expected-warning{{enumeration values 'Vim' and 'Emacs' not handled in switch}}
19}
20
21enum SwitchThree {
22 New __attribute__((availability(macos, introduced=1000))),
23};
24
25void testSwitchThree(enum SwitchThree st) {
26 switch (st) {} // expected-warning{{enumeration value 'New' not handled in switch}}
27}