Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
lambda-8.h
blob: c4bb20dcf1f9c3fba3ed9ea205ebda53f7cc3bdd [
file
] [
log
] [
blame
]
// PR c++/116568
template
<typename>
struct
S
{
template
<typename>
using
t
=
decltype
([]{});
};
// 't' does not currently have a mangling scope, but should not ICE
using
t
=
S
<int>
::
t
<int>
;