Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
e7e3f2e5cd786f6cca267210b3d185b2a4a037bd
/
.
/
test
/
C++Frontend
/
2003-09-30-CommaExprBug.cpp
blob: 3d57a54a73660435e8c0b4e22f47dcbb3cbbedd6 [
file
] [
log
] [
blame
]
Chris Lattner
cdeeab3
2003-09-30 21:46:23 +0000
[
diff
] [
blame
]
1
class
Empty
{};
2
3
void
foo
(
Empty
E
);
4
5
void
bar
()
{
6
foo
(
Empty
());
7
}
8