aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/const7.C
blob: e1dd4d802db5d07efc2d424999b04f7eafd1e594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do compile }
// { dg-options "-fdump-tree-gimple -pedantic" }

struct s { int x, y; };
short offsets[1] = {
  ((char*) &(((struct s*)16)->y) - (char *)16), // { dg-message "narrowing" "" { target { c++11 && { ! ptr_eq_short } } } }
};

// This ensures that we get a dump whether or not the bug is present.
void fn() { }

// { dg-final { scan-tree-dump-not "initialization"  "gimple" } }