* fi.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / abi-tag16a.C
blob12fe312595fa11a22b50d18eaf7a7cc3d0cf76f4
1 // { dg-options "-fabi-version=9" }
2 // { dg-final { scan-assembler "_ZGVZN1N1FEvE4Name" } }
3 namespace std {
4   __extension__ inline namespace __cxx11 __attribute__((abi_tag("cxx11"))) {
5     struct String {
6       String();
7     };
8   }
10 namespace N {
11   inline void F() {
12     {
13       static std::String Name;
14     }
15   }
16   void F2() {
17     F();
18   }