Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
3bb49fbd27aacc2dc5ab0495d9a6ca54616afbc0
/
.
/
test
/
C++Frontend
/
2003-08-21-EmptyClass.cpp
blob: 4951871b827d040db07f866f82b729f754593015 [
file
] [
log
] [
blame
]
// This tests compilation of EMPTY_CLASS_EXPR's
struct
empty
{};
void
foo
(
empty E
);
void
bar
()
{
foo
(
empty
());
}