summaryrefslogtreecommitdiffstats
path: root/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/p8.cpp
blob: 574237ee557dafccea57bccc3e60f84182f8f8ed (plain)
1
2
3
4
// RUN: clang-cc -fsyntax-only -verify %s
class A { 
  void f(A* p = this) { }	// expected-error{{invalid use of 'this'}}
};