aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ubsan/pr61272.C
blob: 064678d37b80d23d581ad321bb13fc40eb1afa7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// PR sanitizer/61272
// { dg-do compile }
// { dg-options "-fsanitize=undefined -std=c++11" }

namespace std
{
  template < typename _Tp > class allocator;
  template < typename _Alloc > struct allocator_traits {
  private:
      template < typename _Tp > auto construct ( _Alloc & __a, _Tp * __p)-> // { dg-error "is private" }
      decltype (_S_construct (__a, __p)) { }
  };
  namespace __gnu_cxx
  {
    template < typename _Alloc > struct __alloc_traits:std::allocator_traits < _Alloc > // { dg-error "within this context" }
    {
      typedef std::allocator_traits < _Alloc > _Base_type;
      using _Base_type::construct;
    };
    template < typename _Tp, typename _Alloc > struct _Vector_base { typedef typename __gnu_cxx::__alloc_traits < _Alloc >::template rebind < _Tp >::other _Tp_alloc_type; }; // { dg-error "no class template" }
    template < typename _Tp, typename _Alloc = std::allocator < _Tp > >class vector : protected _Vector_base < _Tp, _Alloc > { };
    template < typename NumberT > struct Point2d { };
    typedef Point2d < int >GdsPoint;
    class GdsPointList : public vector < GdsPoint > {};}}