summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-09-30-CommaExprBug.cpp
blob: afe470cd11b07dfaeb31354bc493f94a7ed059d0 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null

class Empty {};

void foo(Empty E);

void bar() {
  foo(Empty());
}