summaryrefslogtreecommitdiff
path: root/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/uflow.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/uflow.pass.cpp')
-rw-r--r--libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/uflow.pass.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/uflow.pass.cpp b/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/uflow.pass.cpp
deleted file mode 100644
index d25ae9b21bff..000000000000
--- a/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/uflow.pass.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// 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.
-//
-//===----------------------------------------------------------------------===//
-
-// <streambuf>
-
-// template <class charT, class traits = char_traits<charT> >
-// class basic_streambuf;
-
-// int_type uflow();
-
-#include <streambuf>
-#include <cassert>
-
-int underflow_called = 0;
-
-struct test
- : public std::basic_streambuf<char>
-{
- test() {}
-
-};
-
-int main()
-{
- test t;
- assert(t.sgetc() == -1);
-}