summaryrefslogtreecommitdiff
path: root/test/std/input.output/iostreams.base/ios.base/fmtflags.state/width.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/input.output/iostreams.base/ios.base/fmtflags.state/width.pass.cpp')
-rw-r--r--test/std/input.output/iostreams.base/ios.base/fmtflags.state/width.pass.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/std/input.output/iostreams.base/ios.base/fmtflags.state/width.pass.cpp b/test/std/input.output/iostreams.base/ios.base/fmtflags.state/width.pass.cpp
deleted file mode 100644
index 287c89d296ee0..0000000000000
--- a/test/std/input.output/iostreams.base/ios.base/fmtflags.state/width.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <ios>
-
-// class ios_base
-
-// streamsize width() const;
-
-#include <ios>
-#include <cassert>
-
-class test
- : public std::ios
-{
-public:
- test()
- {
- init(0);
- }
-};
-
-int main()
-{
- const test t;
- assert(t.width() == 0);
-}