Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
d901b6640e0f1d1757a2db9fb57a140ad828ea75
/
.
/
test
/
FrontendC++
/
2003-09-22-CompositeExprValue.cpp
blob: a8208adc5127cef9e28a19b7fb0c44af4329df29 [
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
struct
duration
{
4
duration
operator
/=(
int
c
)
{
5
return
*
this
;
6
}
7
};
8
9
void
a000090
()
{
10
duration
()
/=
1
;
11
}