1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/FrontendC++/2003-08-29-ArgPassingBug.cpp

14 lines
213 B
C++
Raw Normal View History

2003-08-29 18:00:19 +02:00
// RUN: %llvmgcc -xc++ -c -o /dev/null %s |& not grep WARNING
2003-08-29 18:00:19 +02:00
struct iterator {
iterator();
iterator(const iterator &I);
};
iterator foo(const iterator &I) { return I; }
void test() {
foo(iterator());
}