mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
16 lines
203 B
C++
16 lines
203 B
C++
// 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;
|
|
|