aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp23/explicit-obj-diagnostics10.C
blob: 354823db166b7179cc5f0f45241c9d8bb7448362 (plain)
1
2
3
4
5
6
7
8
// PR c++/113389
// { dg-do compile { target c++23 } }

struct A {
  void foo(A, this A);	// { dg-error "only the first parameter" }
  void qux(A, this A,	// { dg-error "only the first parameter" }
	   this A);	// { dg-error "only the first parameter" }
};