1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr

14 lines
217 B
Plaintext
Raw Normal View History

2003-08-29 18:00:19 +02:00
// RUN: %llvmgcc -xc++ -c -o /dev/null %s 2>&1 | 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());
}