summaryrefslogtreecommitdiff
path: root/tests/headers/381-decltype-alias.hpp
blob: 0bec2fc7d14b0b8c23d854cc464f7901e26efb21 (plain)
1
2
3
4
5
6
7
// bindgen-flags: -- -std=c++11

namespace std {
  template<typename _Alloc> struct allocator_traits {
    typedef decltype ( _S_size_type_helper ( ( _Alloc * ) 0 ) ) __size_type;
  };
}