llvm-6502/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr
Reid Spencer 4cda190ef5 For PR1319:
Fix test syntax per new rules.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36133 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-16 15:15:52 +00:00

14 lines
213 B
Plaintext

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