blob: d4cddff3147cc2147c19dd6d91d3db7c5950e816 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001
2// RUN: %llvmgcc -xc++ -c -o /dev/null %s |& not grep WARNING
3
4struct iterator {
5 iterator();
6 iterator(const iterator &I);
7};
8
9iterator foo(const iterator &I) { return I; }
10
11void test() {
12 foo(iterator());
13}