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

// Shouldn't ICE
struct S {
  void a(this long);
  void b(this const long);
  void c(this long unsigned);
  void c(this signed);
};