Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
f17a25c88b892d30c2b41ba7ecdfbdfb2b4be9cc
/
.
/
test
/
C++Frontend
/
2003-09-30-CommaExprBug.cpp
blob: afe470cd11b07dfaeb31354bc493f94a7ed059d0 [
file
] [
log
] [
blame
]
Dan Gohman
f17a25c
2007-07-18 16:29:46 +0000
[
diff
] [
blame^
]
1
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3
class
Empty
{};
4
5
void
foo
(
Empty
E
);
6
7
void
bar
()
{
8
foo
(
Empty
());
9
}
10