view gcc/testsuite/g++.dg/pr80287.C @ 123:ab229f40eab2

fix inline_call
author mir3636
date Fri, 30 Mar 2018 22:58:55 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

// PR c++/80287
// { dg-do compile { target c++11 } }
// { dg-options "-g" }

struct A {
  operator long() {}
} __attribute__((__may_alias__));

struct {
  A ino;
} a;

char b = a.ino;