1// { dg-do assemble  }
2// Origin: Alfred Minarik <a8601248@unet.univie.ac.at>
3
4template <typename T>
5struct allocator
6{
7  typedef int size_type;
8};
9
10template <typename T>
11struct string
12{
13  typedef typename allocator<T>::size_type size_type;
14
15  static size_type size;
16
17  size_type
18  max_size() const { return size; }
19};
20
21template struct string <char>;
22