blob: 535a6a2d6306aa1162a37d8dff4a760f87e465ae [file] [log] [blame]
// Origin: Alfred Minarik <a8601248@unet.univie.ac.at>
// Build don't link:
template <typename T>
struct allocator
{
typedef int size_type;
};
template <typename T>
struct string
{
typedef typename allocator<T>::size_type size_type;
static size_type size;
size_type
max_size() const { return size; }
};
template string <char>;