Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
SemaTemplate
/
destructor-template.cpp
blob: a7c8d247f021ad9a844c2463dd666b8ea240e66e [
file
] [
log
] [
blame
]
Fariborz Jahanian
c87efbd
2009-08-25 16:37:49 +0000
[
diff
] [
blame
]
1
// RUN: clang-cc -fsyntax-only -verify %s
2
3
template
<
typename
A
>
class
s0
{
4
5
template
<
typename
B
>
class
s1
:
public
s0
<
A
>
{
6
~
s1
()
{}
7
s0
<
A
>
ms0
;
8
};
9
10
};
11
12