blob: cc94e9ab3aaabaef293a886b2b50a6f030227d75 [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.
//
//===----------------------------------------------------------------------===//
#include <memory>
#include <string>
#include <cassert>
int main()
{
auto up2 = std::make_unique<int[]>(10, 20, 30, 40);
}