mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-11 23:26:05 +00:00
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());
|
|
}
|