5 language.support fail

This commit is contained in:
NAKAMURA Takumi
2011-06-11 21:49:27 +09:00
parent 2d7ecd8fda
commit 619c2c22d8
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// test quick_exit and at_quick_exit
#include <cstdlib>
#include <type_traits>
void f();
int main()
{
std::at_quick_exit(f);
quick_exit(0);
}