Mercurial > hg > CbC > CbC_llvm
annotate clang/test/SemaTemplate/instantiation-default-3.cpp @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 1 // RUN: %clang_cc1 -fsyntax-only -verify %s |
2 // expected-no-diagnostics | |
3 | |
4 template<typename T> struct A { }; | |
5 | |
6 template<typename T, typename U = A<T*> > | |
7 struct B : U { }; | |
8 | |
9 template<> | |
10 struct A<int*> { | |
11 void foo(); | |
12 }; | |
13 | |
14 template<> | |
15 struct A<float*> { | |
16 void bar(); | |
17 }; | |
18 | |
19 void test(B<int> *b1, B<float> *b2) { | |
20 b1->foo(); | |
21 b2->bar(); | |
22 } |