testsuite: suppress mangling compatibility aliases
[official-gcc.git] / gcc / testsuite / g++.dg / abi / mangle47.C
blob09d822ea62348cf7e4be6b58e335e62ed17c8ad5
1 // PR c++/47132
2 // { dg-do compile { target c++11 } }
3 // { dg-final { scan-assembler "_Z1fIiEDToRfp_Li1EET_" } }
4 // { dg-additional-options -fabi-compat-version=0 }
6 template <typename T>
7 auto f (T t) -> decltype(t |= 1);
9 int main()
11   f(1);