// RUN: %clang_cc1 -fsyntax-only -verify %s
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
;
;
void
;
// PR3600
void // expected-error{{'this' argument to member function 'bar' has type 'const foo', but function is not marked const}}
;
;
B b = 0; // ok, calls B(int) then A(const A&) then B(A).