Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
31f841bc4853f086d4d537848623c4f8d10366e6
/
.
/
test
/
C++Frontend
/
2003-10-27-VirtualBaseClassCrash.cpp
blob: 39ec5c76fac964c8de87a15f96cfd2b285823256 [
file
] [
log
] [
blame
]
template
<
class
T
>
struct
super
{
int
Y
;
void
foo
();
};
template
<
class
T
>
struct
test
:
virtual
super
<int>
{};
extern
test
<int>
X
;
void
foo
()
{
X
.
foo
();
}