summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/22_locale/locale
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-10 10:15:35 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-10 10:15:35 +0000
commit67cee0ec4ad1192449588e7f7b0992cdfdaaebe3 (patch)
tree906e97d9b7f3ec0992b643fecaaa137c773179df /libstdc++-v3/testsuite/22_locale/locale
parent7e614678f2714e9ec3fb125f89bbb2793f59bb58 (diff)
downloadgcc-67cee0ec4ad1192449588e7f7b0992cdfdaaebe3.tar.gz
2004-01-10 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/13630 * include/bits/locale_classes.h (class locale): Fix category typedef. * testsuite/22_locale/locale/13630.cc: Add. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75635 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/22_locale/locale')
-rw-r--r--libstdc++-v3/testsuite/22_locale/locale/13630.cc37
1 files changed, 37 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/22_locale/locale/13630.cc b/libstdc++-v3/testsuite/22_locale/locale/13630.cc
new file mode 100644
index 00000000000..aea1085fa3d
--- /dev/null
+++ b/libstdc++-v3/testsuite/22_locale/locale/13630.cc
@@ -0,0 +1,37 @@
+// Copyright (C) 2004 Free Software Foundation
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 2, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING. If not, write to the Free
+// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+// USA.
+
+// 22.1.1 class locale [lib.locale]
+
+#include <locale>
+#include <typeinfo>
+#include <testsuite_hooks.h>
+
+void test01()
+{
+ using namespace std;
+ bool test __attribute__((unused)) = true;
+
+ VERIFY( typeid(locale::category) == typeid(int) );
+}
+
+int main()
+{
+ test01();
+ return 0;
+}