* ru.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / ubsan / pr59306.C
blob621093c6b732c7090b1abbafc7b303c3b95f4531
1 // { dg-do compile }
2 // { dg-options "-fsanitize=undefined" }
4 class A {
5   void bar (void (A::*) (int));
6   void foo (int);
7   void B ();
8 };
10 void A::B()
12   bar (&A::foo);