brintos

brintos / llvm-project-archived public Read only

0
0
Text · 160 B · 772db99 Raw
9 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s2 3template <typename T>4struct A {5  // Used to crash when field was named after class.6  int A = 0;7};8A<int> a;9