xref: /minix3/external/bsd/llvm/dist/clang/test/SemaCXX/PR8755.cpp (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 template <typename T>
4 struct A {
5   typedef int iterator;  // expected-note{{declared here}}
6 };
7 
8 template <typename T>
9 void f() {
10   class A <T> ::iterator foo;  // expected-error{{elaborated type refers to a typedef}}
11 }
12 
13 void g() {
14   f<int>();  // expected-note{{in instantiation of function template}}
15 }
16 
17