Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: tim.pavlic at minelab dot com.au
Target Milestone: ---
Code:
-
#include
template
using probably_unsigned = decltype
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68451
--- Comment #2 from Tim ---
Still ICEs on 9.2
onent: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: tim.pavlic at minelab dot com.au
Target Milestone: ---
Source I'm testing with:
-
#include
template
struct identity
{
using type = T;
};
template
using Identity [[deprecated]]
: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: tim.pavlic at minelab dot com.au
Target Milestone: ---
Source to reproduce:
struct A {};
struct B
{
A a;
friend decltype(a); // This
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: tim.pavlic at minelab dot com.au
Source to reproduce:
struct Foo
{
enum class Bar
{
BAZ
};
};
void take_bar(Foo::Bar /*bar*/)
{
}
int