* fi.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / abi-tag9.C
blob9ec78a9ac1aeae1cb0a57eb22eaa630bdcea96cf
1 // { dg-final { scan-assembler "_Z1fSsB3fooS_" } }
3 namespace std {
4   template <class T> struct char_traits {};
5   template <class T> struct allocator {};
6   template <class T, class U, class V>
7   struct __attribute ((abi_tag ("foo"))) basic_string { };
8   typedef basic_string<char,char_traits<char>,allocator<char> > string;
11 void f(std::string,std::string) {}