mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-16 08:29:08 +00:00
9adadc67ec
instead of %gcc and %gxx. llvm-svn: 8792
14 lines
217 B
Plaintext
14 lines
217 B
Plaintext
|
|
// RUN: %llvmgcc -xc++ -c -o /dev/null %s 2>&1 | not grep WARNING
|
|
|
|
struct iterator {
|
|
iterator();
|
|
iterator(const iterator &I);
|
|
};
|
|
|
|
iterator foo(const iterator &I) { return I; }
|
|
|
|
void test() {
|
|
foo(iterator());
|
|
}
|