Clang Project

clang_source_code/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/p8.cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2class A { 
3  void f(A* p = this) { } // expected-error{{invalid use of 'this'}}
4};
5