summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/pr66655.h
blob: c730fbad48e68fc38b85b2e893addf147b0553df (plain)
1
2
3
4
5
6
7
typedef int int32_t __attribute__((mode (__SI__)));

struct S
{
  static int32_t i;
  static void set (int32_t ii) { i = -ii; }
};