blob: b53075d033bc4d29ccd9255ddd6cbc8c5a79d537 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <forward_list>
// The container's value type must be the same as the allocator's value type
#include <forward_list>
int main()
{
std::forward_list<int, std::allocator<long> > fl;
}