brintos

brintos / llvm-project-archived public Read only

0
0
Text · 263 B · 5db9b56 Raw
15 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4// PR56815template <class T> struct Base {6  struct foo {};7  int foo;8};9 10template <class T> struct Derived : Base<T> {11  typedef struct Base<T>::foo type;12};13 14template struct Derived<int>;15