mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
13 lines
213 B
C++
13 lines
213 B
C++
|
|
// 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());
|
|
}
|