Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
852d63b806c5cbd730c6b9d696e2e27d02546b49
/
.
/
test
/
SemaTemplate
/
nested-template.cpp
blob: bd9e89f76a0a4e39b1e34568f4b2f7ba3b2982c0 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only %s
class
A
;
class
S
{
public
:
template
<
typename
T
>
struct
A
{
struct
Nested
{
typedef
T type
;
};
};
};
int
i
;
S
::
A
<int>
::
Nested
::
type
*
ip
=
&
i
;