aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/abi/abi-tag4.C
blob: 6bf4fa1c538575edca149a3ef1e471c0697801a6 (plain)
1
2
3
4
5
6
7
8
// { dg-options "-Wabi-tag" }

struct __attribute ((abi_tag ("X"))) A { };

struct B			// { dg-warning "ABI tag" }
{
  virtual void f(A);		// { dg-message "declared here" }
};