diff options
Diffstat (limited to 'libcxx/test/std/input.output/file.streams/c.files/gets.fail.cpp')
-rw-r--r-- | libcxx/test/std/input.output/file.streams/c.files/gets.fail.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libcxx/test/std/input.output/file.streams/c.files/gets.fail.cpp b/libcxx/test/std/input.output/file.streams/c.files/gets.fail.cpp new file mode 100644 index 00000000000..4250e23c11c --- /dev/null +++ b/libcxx/test/std/input.output/file.streams/c.files/gets.fail.cpp @@ -0,0 +1,23 @@ +//===----------------------------------------------------------------------===// +// +// 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 <cstdio> + +// gets + +#include <cstdio> + +int main() +{ +#if _LIBCPP_STD_VER > 11 + (void) std::gets((char *) NULL); +#else +#error +#endif +} |