blob: 929327b798296417f71c2bd772c565fb95370134 [file] [log] [blame]
Eric Christopher9ee5f462012-05-23 00:09:47 +00001// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin -std=c++11 %s -o - | FileCheck %s
2
3enum class A { A1=1 }; // underlying type is int by default
4enum class B: unsigned long { B1=1 }; // underlying type is unsigned long
5enum C { C1 = 1 };
Eric Christopher5a2eff82012-06-01 00:22:57 +00006enum D : short; // enum forward declaration
Eric Christopher9ee5f462012-05-23 00:09:47 +00007A a;
8B b;
9C c;
Eric Christopher5a2eff82012-06-01 00:22:57 +000010D d;
Eric Christopher9ee5f462012-05-23 00:09:47 +000011
David Blaikie8a40cc62013-03-19 23:10:14 +000012// CHECK: ; [ DW_TAG_enumeration_type ] [A] [line 3, size 32, align 32, offset 0] [from int]
13// CHECK: ; [ DW_TAG_enumeration_type ] [B] [line 4, size 64, align 64, offset 0] [from long unsigned int]
14// CHECK: ; [ DW_TAG_enumeration_type ] [C] [line 5, size 32, align 32, offset 0] [from ]
15// CHECK: ; [ DW_TAG_enumeration_type ] [D] [line 6, size 16, align 16, offset 0] [fwd] [from ]
Eli Friedmane6b39bc2012-10-05 01:49:33 +000016
17namespace PR14029 {
18 // Make sure this doesn't crash/assert.
19 template <typename T> struct Test {
20 enum class Tag {
21 test = 0
22 };
23 Test() {
24 auto t = Tag::test;
25 }
26 Tag tag() const { return static_cast<Tag>(1); }
27 };
28 Test<int> t;
29}