Sign in
ara-mdk
/
platform
/
external
/
llvm
/
e3a601b648e4cbb916e33f969a1b9d3d40b36734
/
.
/
test
/
FrontendC++
/
2003-08-21-EmptyClass.cpp
blob: 5dbfa33e03c3c81a410c3fbd12520e5d8038c482 [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
// This tests compilation of EMPTY_CLASS_EXPR's
struct
empty
{};
void
foo
(
empty
)
{}
void
bar
()
{
foo
(
empty
());
}