2011-10-14 06:29:44 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify -triple x86_64-apple-darwin %s
|
2022-05-21 03:16:29 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++17 -verify -triple x86_64-apple-darwin %s
|
2010-10-09 07:50:27 +08:00
|
|
|
|
|
|
|
enum class E1 {
|
|
|
|
Val1 = 1L
|
|
|
|
};
|
|
|
|
|
|
|
|
enum struct E2 {
|
|
|
|
Val1 = '\0'
|
|
|
|
};
|
|
|
|
|
|
|
|
E1 v1 = Val1; // expected-error{{undeclared identifier}}
|
|
|
|
E1 v2 = E1::Val1;
|
|
|
|
|
|
|
|
static_assert(sizeof(E1) == sizeof(int), "bad size");
|
|
|
|
static_assert(sizeof(E1::Val1) == sizeof(int), "bad size");
|
|
|
|
static_assert(sizeof(E2) == sizeof(int), "bad size");
|
|
|
|
static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
|
|
|
|
|
|
|
|
E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
|
|
|
|
int x1 = E1::Val1; // expected-error{{cannot initialize a variable}}
|
|
|
|
|
|
|
|
enum E3 : char {
|
|
|
|
Val2 = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
E3 v4 = Val2;
|
|
|
|
E1 v5 = Val2; // expected-error{{cannot initialize a variable}}
|
|
|
|
|
|
|
|
static_assert(sizeof(E3) == 1, "bad size");
|
|
|
|
|
|
|
|
int x2 = Val2;
|
|
|
|
|
|
|
|
int a1[Val2];
|
2022-05-21 03:16:29 +08:00
|
|
|
int a2[E1::Val1];
|
|
|
|
|
|
|
|
#if __cplusplus >= 201703L
|
|
|
|
// expected-error@-3 {{type 'E1' is not implicitly convertible to 'unsigned long'}}
|
|
|
|
#else
|
|
|
|
// expected-error@-5 {{size of array has non-integer type}}
|
|
|
|
#endif
|
2010-10-09 07:50:27 +08:00
|
|
|
|
|
|
|
int* p1 = new int[Val2];
|
2022-05-21 03:16:29 +08:00
|
|
|
int* p2 = new int[E1::Val1];
|
|
|
|
|
|
|
|
#if __cplusplus >= 201703L
|
|
|
|
// expected-error@-3 {{converting 'E1' to incompatible type 'unsigned long'}}
|
|
|
|
#else
|
|
|
|
// expected-error@-5 {{array size expression must have integral or unscoped enumeration type, not 'E1'}}
|
|
|
|
#endif
|
2010-10-09 07:50:27 +08:00
|
|
|
|
|
|
|
enum class E4 {
|
|
|
|
e1 = -2147483648, // ok
|
|
|
|
e2 = 2147483647, // ok
|
2012-01-19 07:55:52 +08:00
|
|
|
e3 = 2147483648 // expected-error{{enumerator value evaluates to 2147483648, which cannot be narrowed to type 'int'}}
|
2010-10-09 07:50:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class E5 {
|
|
|
|
e1 = 2147483647, // ok
|
|
|
|
e2 // expected-error{{2147483648 is not representable in the underlying}}
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class E6 : bool {
|
|
|
|
e1 = false, e2 = true,
|
|
|
|
e3 // expected-error{{2 is not representable in the underlying}}
|
|
|
|
};
|
|
|
|
|
|
|
|
enum E7 : bool {
|
|
|
|
e1 = false, e2 = true,
|
|
|
|
e3 // expected-error{{2 is not representable in the underlying}}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
struct X {
|
|
|
|
enum E : T {
|
|
|
|
e1, e2,
|
|
|
|
e3 // expected-error{{2 is not representable in the underlying}}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
X<bool> X2; // expected-note{{in instantiation of template}}
|
|
|
|
|
|
|
|
enum Incomplete1; // expected-error{{C++ forbids forward references}}
|
|
|
|
|
|
|
|
enum Complete1 : int;
|
|
|
|
Complete1 complete1;
|
|
|
|
|
|
|
|
enum class Complete2;
|
|
|
|
Complete2 complete2;
|
|
|
|
|
|
|
|
// All the redeclarations below are done twice on purpose. Tests that the type
|
|
|
|
// of the declaration isn't changed.
|
|
|
|
|
2014-01-06 19:31:06 +08:00
|
|
|
enum class Redeclare2; // expected-note{{previous declaration is here}} expected-note{{previous declaration is here}}
|
2010-10-09 07:50:27 +08:00
|
|
|
enum Redeclare2; // expected-error{{previously declared as scoped}}
|
|
|
|
enum Redeclare2; // expected-error{{previously declared as scoped}}
|
|
|
|
|
2014-01-06 19:31:06 +08:00
|
|
|
enum Redeclare3 : int; // expected-note{{previous declaration is here}} expected-note{{previous declaration is here}}
|
2010-10-09 07:50:27 +08:00
|
|
|
enum Redeclare3; // expected-error{{previously declared with fixed underlying type}}
|
|
|
|
enum Redeclare3; // expected-error{{previously declared with fixed underlying type}}
|
|
|
|
|
|
|
|
enum class Redeclare5;
|
|
|
|
enum class Redeclare5 : int; // ok
|
|
|
|
|
2014-01-06 19:31:06 +08:00
|
|
|
enum Redeclare6 : int; // expected-note{{previous declaration is here}} expected-note{{previous declaration is here}}
|
2010-10-09 07:50:27 +08:00
|
|
|
enum Redeclare6 : short; // expected-error{{redeclared with different underlying type}}
|
|
|
|
enum Redeclare6 : short; // expected-error{{redeclared with different underlying type}}
|
|
|
|
|
2014-01-06 19:31:06 +08:00
|
|
|
enum class Redeclare7; // expected-note{{previous declaration is here}} expected-note{{previous declaration is here}}
|
2010-10-09 07:50:27 +08:00
|
|
|
enum class Redeclare7 : short; // expected-error{{redeclared with different underlying type}}
|
|
|
|
enum class Redeclare7 : short; // expected-error{{redeclared with different underlying type}}
|
2011-02-22 10:55:24 +08:00
|
|
|
|
|
|
|
enum : long {
|
|
|
|
long_enum_val = 10000
|
|
|
|
};
|
|
|
|
|
2022-08-28 06:18:36 +08:00
|
|
|
enum : long x; // expected-error{{unnamed enumeration must be a definition}}
|
2011-03-02 01:16:20 +08:00
|
|
|
|
|
|
|
void PR9333() {
|
|
|
|
enum class scoped_enum { yes, no, maybe };
|
|
|
|
scoped_enum e = scoped_enum::yes;
|
|
|
|
if (e == scoped_enum::no) { }
|
|
|
|
}
|
2011-05-06 00:13:52 +08:00
|
|
|
|
|
|
|
// <rdar://problem/9366066>
|
|
|
|
namespace rdar9366066 {
|
|
|
|
enum class X : unsigned { value };
|
|
|
|
|
|
|
|
void f(X x) {
|
[clang] Implement ElaboratedType sugaring for types written bare
Without this patch, clang will not wrap in an ElaboratedType node types written
without a keyword and nested name qualifier, which goes against the intent that
we should produce an AST which retains enough details to recover how things are
written.
The lack of this sugar is incompatible with the intent of the type printer
default policy, which is to print types as written, but to fall back and print
them fully qualified when they are desugared.
An ElaboratedTypeLoc without keyword / NNS uses no storage by itself, but still
requires pointer alignment due to pre-existing bug in the TypeLoc buffer
handling.
---
Troubleshooting list to deal with any breakage seen with this patch:
1) The most likely effect one would see by this patch is a change in how
a type is printed. The type printer will, by design and default,
print types as written. There are customization options there, but
not that many, and they mainly apply to how to print a type that we
somehow failed to track how it was written. This patch fixes a
problem where we failed to distinguish between a type
that was written without any elaborated-type qualifiers,
such as a 'struct'/'class' tags and name spacifiers such as 'std::',
and one that has been stripped of any 'metadata' that identifies such,
the so called canonical types.
Example:
```
namespace foo {
struct A {};
A a;
};
```
If one were to print the type of `foo::a`, prior to this patch, this
would result in `foo::A`. This is how the type printer would have,
by default, printed the canonical type of A as well.
As soon as you add any name qualifiers to A, the type printer would
suddenly start accurately printing the type as written. This patch
will make it print it accurately even when written without
qualifiers, so we will just print `A` for the initial example, as
the user did not really write that `foo::` namespace qualifier.
2) This patch could expose a bug in some AST matcher. Matching types
is harder to get right when there is sugar involved. For example,
if you want to match a type against being a pointer to some type A,
then you have to account for getting a type that is sugar for a
pointer to A, or being a pointer to sugar to A, or both! Usually
you would get the second part wrong, and this would work for a
very simple test where you don't use any name qualifiers, but
you would discover is broken when you do. The usual fix is to
either use the matcher which strips sugar, which is annoying
to use as for example if you match an N level pointer, you have
to put N+1 such matchers in there, beginning to end and between
all those levels. But in a lot of cases, if the property you want
to match is present in the canonical type, it's easier and faster
to just match on that... This goes with what is said in 1), if
you want to match against the name of a type, and you want
the name string to be something stable, perhaps matching on
the name of the canonical type is the better choice.
3) This patch could expose a bug in how you get the source range of some
TypeLoc. For some reason, a lot of code is using getLocalSourceRange(),
which only looks at the given TypeLoc node. This patch introduces a new,
and more common TypeLoc node which contains no source locations on itself.
This is not an inovation here, and some other, more rare TypeLoc nodes could
also have this property, but if you use getLocalSourceRange on them, it's not
going to return any valid locations, because it doesn't have any. The right fix
here is to always use getSourceRange() or getBeginLoc/getEndLoc which will dive
into the inner TypeLoc to get the source range if it doesn't find it on the
top level one. You can use getLocalSourceRange if you are really into
micro-optimizations and you have some outside knowledge that the TypeLocs you are
dealing with will always include some source location.
4) Exposed a bug somewhere in the use of the normal clang type class API, where you
have some type, you want to see if that type is some particular kind, you try a
`dyn_cast` such as `dyn_cast<TypedefType>` and that fails because now you have an
ElaboratedType which has a TypeDefType inside of it, which is what you wanted to match.
Again, like 2), this would usually have been tested poorly with some simple tests with
no qualifications, and would have been broken had there been any other kind of type sugar,
be it an ElaboratedType or a TemplateSpecializationType or a SubstTemplateParmType.
The usual fix here is to use `getAs` instead of `dyn_cast`, which will look deeper
into the type. Or use `getAsAdjusted` when dealing with TypeLocs.
For some reason the API is inconsistent there and on TypeLocs getAs behaves like a dyn_cast.
5) It could be a bug in this patch perhaps.
Let me know if you need any help!
Signed-off-by: Matheus Izvekov <mizvekov@gmail.com>
Differential Revision: https://reviews.llvm.org/D112374
2021-10-12 00:15:36 +08:00
|
|
|
x % X::value; // expected-error{{invalid operands to binary expression ('X' and 'rdar9366066::X')}}
|
|
|
|
x % 8; // expected-error{{invalid operands to binary expression ('X' and 'int')}}
|
2011-05-06 00:13:52 +08:00
|
|
|
}
|
|
|
|
}
|
2011-07-06 13:58:41 +08:00
|
|
|
|
2011-07-06 14:57:57 +08:00
|
|
|
// Part 1 of PR10264
|
2011-07-06 13:58:41 +08:00
|
|
|
namespace test5 {
|
|
|
|
namespace ns {
|
|
|
|
typedef unsigned Atype;
|
|
|
|
enum A : Atype;
|
|
|
|
}
|
|
|
|
enum ns::A : ns::Atype {
|
|
|
|
x, y, z
|
|
|
|
};
|
|
|
|
}
|
2011-07-06 14:57:57 +08:00
|
|
|
|
|
|
|
// Part 2 of PR10264
|
|
|
|
namespace test6 {
|
|
|
|
enum A : unsigned;
|
|
|
|
struct A::a; // expected-error {{incomplete type 'test6::A' named in nested name specifier}}
|
|
|
|
enum A::b; // expected-error {{incomplete type 'test6::A' named in nested name specifier}}
|
|
|
|
int A::c; // expected-error {{incomplete type 'test6::A' named in nested name specifier}}
|
|
|
|
void A::d(); // expected-error {{incomplete type 'test6::A' named in nested name specifier}}
|
|
|
|
void test() {
|
|
|
|
(void) A::e; // expected-error {{incomplete type 'test6::A' named in nested name specifier}}
|
|
|
|
}
|
|
|
|
}
|
2011-12-06 08:10:34 +08:00
|
|
|
|
|
|
|
namespace PR11484 {
|
|
|
|
const int val = 104;
|
|
|
|
enum class test1 { owner_dead = val, };
|
|
|
|
}
|
2012-01-10 09:33:14 +08:00
|
|
|
|
|
|
|
namespace N2764 {
|
2020-05-11 04:14:51 +08:00
|
|
|
enum class E *x0a; // expected-error {{reference to enumeration must use 'enum' not 'enum class'}}
|
|
|
|
enum E2 *x0b; // OK
|
2012-01-10 09:33:14 +08:00
|
|
|
enum class E { a, b };
|
|
|
|
enum E x1 = E::a; // ok
|
2020-05-11 04:14:51 +08:00
|
|
|
enum class E x2 = E::a; // expected-error {{reference to enumeration must use 'enum' not 'enum class'}}
|
2012-01-10 09:33:14 +08:00
|
|
|
|
|
|
|
enum F { a, b };
|
|
|
|
enum F y1 = a; // ok
|
|
|
|
enum class F y2 = a; // expected-error {{reference to enumeration must use 'enum' not 'enum class'}}
|
|
|
|
|
|
|
|
struct S {
|
2020-05-11 04:14:51 +08:00
|
|
|
friend enum class E; // expected-error {{reference to enumeration must use 'enum' not 'enum class'}}
|
2012-01-10 09:33:14 +08:00
|
|
|
friend enum class F; // expected-error {{reference to enumeration must use 'enum' not 'enum class'}}
|
|
|
|
|
|
|
|
friend enum G {}; // expected-error {{forward reference}} expected-error {{cannot define a type in a friend declaration}}
|
2020-05-11 04:14:51 +08:00
|
|
|
friend enum class H {}; // expected-error {{forward reference}} expected-error {{cannot define a type in a friend declaration}}
|
|
|
|
friend enum I : int {}; // expected-error {{forward reference}} expected-error {{cannot define a type in a friend declaration}}
|
2012-01-10 09:33:14 +08:00
|
|
|
|
|
|
|
enum A : int;
|
|
|
|
A a;
|
|
|
|
} s;
|
|
|
|
|
|
|
|
enum S::A : int {};
|
|
|
|
|
|
|
|
enum class B;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum class N2764::B {};
|
2012-03-08 10:08:05 +08:00
|
|
|
|
|
|
|
namespace PR12106 {
|
|
|
|
template<typename E> struct Enum {
|
|
|
|
Enum() : m_e(E::Last) {}
|
|
|
|
E m_e;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum eCOLORS { Last };
|
|
|
|
Enum<eCOLORS> e;
|
|
|
|
}
|
2012-03-10 15:47:07 +08:00
|
|
|
|
|
|
|
namespace test7 {
|
|
|
|
enum class E { e = (struct S*)0 == (struct S*)0 };
|
|
|
|
S *p;
|
|
|
|
}
|
2012-03-24 07:09:08 +08:00
|
|
|
|
|
|
|
namespace test8 {
|
|
|
|
template<typename T> struct S {
|
|
|
|
enum A : int; // expected-note {{here}}
|
|
|
|
enum class B; // expected-note {{here}}
|
|
|
|
enum class C : int; // expected-note {{here}}
|
2012-03-26 12:08:46 +08:00
|
|
|
enum class D : int; // expected-note {{here}}
|
2012-03-24 07:09:08 +08:00
|
|
|
};
|
|
|
|
template<typename T> enum S<T>::A { a }; // expected-error {{previously declared with fixed underlying type}}
|
|
|
|
template<typename T> enum class S<T>::B : char { b }; // expected-error {{redeclared with different underlying}}
|
|
|
|
template<typename T> enum S<T>::C : int { c }; // expected-error {{previously declared as scoped}}
|
2012-03-26 12:08:46 +08:00
|
|
|
template<typename T> enum class S<T>::D : char { d }; // expected-error {{redeclared with different underlying}}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace test9 {
|
|
|
|
template<typename T> struct S {
|
|
|
|
enum class ET : T; // expected-note 2{{here}}
|
|
|
|
enum class Eint : int; // expected-note 2{{here}}
|
|
|
|
};
|
|
|
|
template<> enum class S<int>::ET : int {};
|
|
|
|
template<> enum class S<char>::ET : short {}; // expected-error {{different underlying type}}
|
|
|
|
template<> enum class S<int>::Eint : short {}; // expected-error {{different underlying type}}
|
|
|
|
template<> enum class S<char>::Eint : int {};
|
|
|
|
|
|
|
|
template<typename T> enum class S<T>::ET : int {}; // expected-error {{different underlying type 'int' (was 'short')}}
|
|
|
|
template<typename T> enum class S<T>::Eint : T {}; // expected-error {{different underlying type 'short' (was 'int')}}
|
|
|
|
|
|
|
|
// The implicit instantiation of S<short> causes the implicit instantiation of
|
|
|
|
// all declarations of member enumerations, so is ill-formed, even though we
|
|
|
|
// never instantiate the definitions of S<short>::ET nor S<short>::Eint.
|
|
|
|
S<short> s; // expected-note {{in instantiation of}}
|
2012-03-24 07:09:08 +08:00
|
|
|
}
|
2012-03-26 12:58:10 +08:00
|
|
|
|
|
|
|
namespace test10 {
|
|
|
|
template<typename T> int f() {
|
|
|
|
enum E : int;
|
|
|
|
enum E : T; // expected-note {{here}}
|
|
|
|
E x;
|
|
|
|
enum E : int { e }; // expected-error {{different underlying}}
|
|
|
|
x = e;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
int k = f<int>();
|
|
|
|
int l = f<short>(); // expected-note {{here}}
|
|
|
|
|
|
|
|
template<typename T> int g() {
|
|
|
|
enum class E : int;
|
|
|
|
enum class E : T; // expected-note {{here}}
|
|
|
|
E x;
|
|
|
|
enum class E : int { e }; // expected-error {{different underlying}}
|
|
|
|
x = E::e;
|
|
|
|
return (int)x;
|
|
|
|
}
|
|
|
|
int m = g<int>();
|
|
|
|
int n = g<short>(); // expected-note {{here}}
|
|
|
|
}
|
2012-07-19 11:12:23 +08:00
|
|
|
|
|
|
|
namespace pr13128 {
|
|
|
|
// This should compile cleanly
|
|
|
|
class C {
|
|
|
|
enum class E { C };
|
|
|
|
};
|
|
|
|
}
|
2013-04-02 05:43:41 +08:00
|
|
|
|
|
|
|
namespace PR15633 {
|
|
|
|
template<typename T> struct A {
|
|
|
|
struct B {
|
|
|
|
enum class E : T;
|
|
|
|
enum class E2 : T;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
template<typename T> enum class A<T>::B::E { e };
|
|
|
|
template class A<int>;
|
|
|
|
|
|
|
|
struct B { enum class E; };
|
|
|
|
template<typename T> enum class B::E { e }; // expected-error {{enumeration cannot be a template}}
|
|
|
|
}
|
2013-08-16 08:09:18 +08:00
|
|
|
|
|
|
|
namespace PR16900 {
|
|
|
|
enum class A;
|
[clang] Implement ElaboratedType sugaring for types written bare
Without this patch, clang will not wrap in an ElaboratedType node types written
without a keyword and nested name qualifier, which goes against the intent that
we should produce an AST which retains enough details to recover how things are
written.
The lack of this sugar is incompatible with the intent of the type printer
default policy, which is to print types as written, but to fall back and print
them fully qualified when they are desugared.
An ElaboratedTypeLoc without keyword / NNS uses no storage by itself, but still
requires pointer alignment due to pre-existing bug in the TypeLoc buffer
handling.
---
Troubleshooting list to deal with any breakage seen with this patch:
1) The most likely effect one would see by this patch is a change in how
a type is printed. The type printer will, by design and default,
print types as written. There are customization options there, but
not that many, and they mainly apply to how to print a type that we
somehow failed to track how it was written. This patch fixes a
problem where we failed to distinguish between a type
that was written without any elaborated-type qualifiers,
such as a 'struct'/'class' tags and name spacifiers such as 'std::',
and one that has been stripped of any 'metadata' that identifies such,
the so called canonical types.
Example:
```
namespace foo {
struct A {};
A a;
};
```
If one were to print the type of `foo::a`, prior to this patch, this
would result in `foo::A`. This is how the type printer would have,
by default, printed the canonical type of A as well.
As soon as you add any name qualifiers to A, the type printer would
suddenly start accurately printing the type as written. This patch
will make it print it accurately even when written without
qualifiers, so we will just print `A` for the initial example, as
the user did not really write that `foo::` namespace qualifier.
2) This patch could expose a bug in some AST matcher. Matching types
is harder to get right when there is sugar involved. For example,
if you want to match a type against being a pointer to some type A,
then you have to account for getting a type that is sugar for a
pointer to A, or being a pointer to sugar to A, or both! Usually
you would get the second part wrong, and this would work for a
very simple test where you don't use any name qualifiers, but
you would discover is broken when you do. The usual fix is to
either use the matcher which strips sugar, which is annoying
to use as for example if you match an N level pointer, you have
to put N+1 such matchers in there, beginning to end and between
all those levels. But in a lot of cases, if the property you want
to match is present in the canonical type, it's easier and faster
to just match on that... This goes with what is said in 1), if
you want to match against the name of a type, and you want
the name string to be something stable, perhaps matching on
the name of the canonical type is the better choice.
3) This patch could expose a bug in how you get the source range of some
TypeLoc. For some reason, a lot of code is using getLocalSourceRange(),
which only looks at the given TypeLoc node. This patch introduces a new,
and more common TypeLoc node which contains no source locations on itself.
This is not an inovation here, and some other, more rare TypeLoc nodes could
also have this property, but if you use getLocalSourceRange on them, it's not
going to return any valid locations, because it doesn't have any. The right fix
here is to always use getSourceRange() or getBeginLoc/getEndLoc which will dive
into the inner TypeLoc to get the source range if it doesn't find it on the
top level one. You can use getLocalSourceRange if you are really into
micro-optimizations and you have some outside knowledge that the TypeLocs you are
dealing with will always include some source location.
4) Exposed a bug somewhere in the use of the normal clang type class API, where you
have some type, you want to see if that type is some particular kind, you try a
`dyn_cast` such as `dyn_cast<TypedefType>` and that fails because now you have an
ElaboratedType which has a TypeDefType inside of it, which is what you wanted to match.
Again, like 2), this would usually have been tested poorly with some simple tests with
no qualifications, and would have been broken had there been any other kind of type sugar,
be it an ElaboratedType or a TemplateSpecializationType or a SubstTemplateParmType.
The usual fix here is to use `getAs` instead of `dyn_cast`, which will look deeper
into the type. Or use `getAsAdjusted` when dealing with TypeLocs.
For some reason the API is inconsistent there and on TypeLocs getAs behaves like a dyn_cast.
5) It could be a bug in this patch perhaps.
Let me know if you need any help!
Signed-off-by: Matheus Izvekov <mizvekov@gmail.com>
Differential Revision: https://reviews.llvm.org/D112374
2021-10-12 00:15:36 +08:00
|
|
|
A f(A a) { return -a; } // expected-error {{invalid argument type 'A' to unary expression}}
|
2013-08-16 08:09:18 +08:00
|
|
|
}
|
2013-10-15 12:56:17 +08:00
|
|
|
|
2014-01-20 15:20:22 +08:00
|
|
|
namespace PR18551 {
|
|
|
|
enum class A { A };
|
|
|
|
bool f() { return !A::A; } // expected-error {{invalid argument type 'PR18551::A' to unary expression}}
|
|
|
|
}
|
|
|
|
|
2013-10-15 12:56:17 +08:00
|
|
|
namespace rdar15124329 {
|
|
|
|
enum class B : bool { F, T };
|
|
|
|
|
|
|
|
const rdar15124329::B T1 = B::T;
|
|
|
|
typedef B C; const C T2 = B::T;
|
|
|
|
|
|
|
|
static_assert(T1 != B::F, "");
|
|
|
|
static_assert(T2 == B::T, "");
|
|
|
|
}
|
|
|
|
|
2013-11-26 05:30:29 +08:00
|
|
|
namespace PR18044 {
|
|
|
|
enum class E { a };
|
|
|
|
|
|
|
|
int E::e = 0; // expected-error {{does not refer into a class}}
|
|
|
|
void E::f() {} // expected-error {{does not refer into a class}}
|
|
|
|
struct E::S {}; // expected-error {{no struct named 'S'}}
|
|
|
|
struct T : E::S {}; // expected-error {{expected class name}}
|
|
|
|
enum E::E {}; // expected-error {{no enum named 'E'}}
|
|
|
|
int E::*p; // expected-error {{does not point into a class}}
|
|
|
|
using E::f; // expected-error {{no member named 'f'}}
|
|
|
|
|
2021-05-04 22:59:17 +08:00
|
|
|
using E::a; // expected-warning {{using declaration naming a scoped enumerator is a C++20 extension}}
|
|
|
|
E b = a;
|
2013-11-26 05:30:29 +08:00
|
|
|
}
|
2015-01-14 08:33:10 +08:00
|
|
|
|
|
|
|
namespace test11 {
|
|
|
|
enum class E { a };
|
|
|
|
typedef E E2;
|
|
|
|
E2 f1() { return E::a; }
|
|
|
|
|
[clang] Implement ElaboratedType sugaring for types written bare
Without this patch, clang will not wrap in an ElaboratedType node types written
without a keyword and nested name qualifier, which goes against the intent that
we should produce an AST which retains enough details to recover how things are
written.
The lack of this sugar is incompatible with the intent of the type printer
default policy, which is to print types as written, but to fall back and print
them fully qualified when they are desugared.
An ElaboratedTypeLoc without keyword / NNS uses no storage by itself, but still
requires pointer alignment due to pre-existing bug in the TypeLoc buffer
handling.
---
Troubleshooting list to deal with any breakage seen with this patch:
1) The most likely effect one would see by this patch is a change in how
a type is printed. The type printer will, by design and default,
print types as written. There are customization options there, but
not that many, and they mainly apply to how to print a type that we
somehow failed to track how it was written. This patch fixes a
problem where we failed to distinguish between a type
that was written without any elaborated-type qualifiers,
such as a 'struct'/'class' tags and name spacifiers such as 'std::',
and one that has been stripped of any 'metadata' that identifies such,
the so called canonical types.
Example:
```
namespace foo {
struct A {};
A a;
};
```
If one were to print the type of `foo::a`, prior to this patch, this
would result in `foo::A`. This is how the type printer would have,
by default, printed the canonical type of A as well.
As soon as you add any name qualifiers to A, the type printer would
suddenly start accurately printing the type as written. This patch
will make it print it accurately even when written without
qualifiers, so we will just print `A` for the initial example, as
the user did not really write that `foo::` namespace qualifier.
2) This patch could expose a bug in some AST matcher. Matching types
is harder to get right when there is sugar involved. For example,
if you want to match a type against being a pointer to some type A,
then you have to account for getting a type that is sugar for a
pointer to A, or being a pointer to sugar to A, or both! Usually
you would get the second part wrong, and this would work for a
very simple test where you don't use any name qualifiers, but
you would discover is broken when you do. The usual fix is to
either use the matcher which strips sugar, which is annoying
to use as for example if you match an N level pointer, you have
to put N+1 such matchers in there, beginning to end and between
all those levels. But in a lot of cases, if the property you want
to match is present in the canonical type, it's easier and faster
to just match on that... This goes with what is said in 1), if
you want to match against the name of a type, and you want
the name string to be something stable, perhaps matching on
the name of the canonical type is the better choice.
3) This patch could expose a bug in how you get the source range of some
TypeLoc. For some reason, a lot of code is using getLocalSourceRange(),
which only looks at the given TypeLoc node. This patch introduces a new,
and more common TypeLoc node which contains no source locations on itself.
This is not an inovation here, and some other, more rare TypeLoc nodes could
also have this property, but if you use getLocalSourceRange on them, it's not
going to return any valid locations, because it doesn't have any. The right fix
here is to always use getSourceRange() or getBeginLoc/getEndLoc which will dive
into the inner TypeLoc to get the source range if it doesn't find it on the
top level one. You can use getLocalSourceRange if you are really into
micro-optimizations and you have some outside knowledge that the TypeLocs you are
dealing with will always include some source location.
4) Exposed a bug somewhere in the use of the normal clang type class API, where you
have some type, you want to see if that type is some particular kind, you try a
`dyn_cast` such as `dyn_cast<TypedefType>` and that fails because now you have an
ElaboratedType which has a TypeDefType inside of it, which is what you wanted to match.
Again, like 2), this would usually have been tested poorly with some simple tests with
no qualifications, and would have been broken had there been any other kind of type sugar,
be it an ElaboratedType or a TemplateSpecializationType or a SubstTemplateParmType.
The usual fix here is to use `getAs` instead of `dyn_cast`, which will look deeper
into the type. Or use `getAsAdjusted` when dealing with TypeLocs.
For some reason the API is inconsistent there and on TypeLocs getAs behaves like a dyn_cast.
5) It could be a bug in this patch perhaps.
Let me know if you need any help!
Signed-off-by: Matheus Izvekov <mizvekov@gmail.com>
Differential Revision: https://reviews.llvm.org/D112374
2021-10-12 00:15:36 +08:00
|
|
|
bool f() { return !f1(); } // expected-error {{invalid argument type 'E2' (aka 'test11::E') to unary expression}}
|
2015-01-14 08:33:10 +08:00
|
|
|
}
|
2017-12-12 03:44:28 +08:00
|
|
|
|
|
|
|
namespace PR35586 {
|
2022-07-29 06:26:15 +08:00
|
|
|
enum C { R=-1, G, B };
|
2017-12-12 03:44:28 +08:00
|
|
|
enum B { F = (enum C) -1, T}; // this should compile cleanly, it used to assert.
|
|
|
|
};
|
2022-05-21 03:16:29 +08:00
|
|
|
|
|
|
|
namespace test12 {
|
|
|
|
// Check that clang rejects this code without crashing in c++17.
|
|
|
|
enum class A;
|
|
|
|
enum class B;
|
|
|
|
A a;
|
|
|
|
B b{a}; // expected-error {{cannot initialize}}
|
|
|
|
}
|