Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
decltype-96652.C
blob: 249cce2b9e8a621686b4578c7239c9d0244cf3ea [
file
] [
log
] [
blame
]
// PR c++/96652
// { dg-do compile { target c++11 } }
struct
A
{};
template
<
typename
T
>
struct
B
{
A m
;
friend
decltype
(
m
);
};
A a
;
B
<int>
b
;