blob: 9cae77504b514a3597ecfe03daa35102239f903a [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3struct S {
4 S (S); // expected-error {{copy constructor must pass its first argument by reference}}
5};
6
7S f();
8
9void g() {
10 S a( f() );
11}
12