//===----------------------------------------------------------------------===// // // 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 that includes and #include template void test_typedef() {} int main() { { // test for std::string s; ((void)s); } { // test for test_typedef(); test_typedef(); test_typedef(); test_typedef(); test_typedef(); } }