Fix type in the changelog entry,
[official-gcc.git] / gcc / testsuite / g++.dg / ipa / pr65008.C
blob29b3a2f161fe40cbbed9dba99c0225ea3eaf84ed
1 // PR ipa/65008
2 // { dg-do compile }
3 // { dg-options "-O2" }
5 struct A
7   A ();
8   virtual void foo () {}
9 };
11 static inline int __attribute__ ((always_inline)) call_foo (A *a)
13   a->foo ();
16 A::A ()
18   call_foo (this);