blob: d01e73371de37ec857ee671f741d7753e2144926 [file] [log] [blame]
// PR c++/80287
// { dg-do compile { target c++11 } }
// { dg-options "-g" }
struct A {
operator long() { return 0; }
} __attribute__((__may_alias__));
struct {
A ino;
} a;
char b = a.ino;