aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/wide_test.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gnat.dg/wide_test.adb')
-rw-r--r--gcc-4.9/gcc/testsuite/gnat.dg/wide_test.adb18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gnat.dg/wide_test.adb b/gcc-4.9/gcc/testsuite/gnat.dg/wide_test.adb
new file mode 100644
index 000000000..f5d990b08
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gnat.dg/wide_test.adb
@@ -0,0 +1,18 @@
+-- { dg-do run }
+-- { dg-options "-gnatW8" }
+
+procedure wide_test is
+ X : constant Wide_Character := 'Я';
+
+begin
+ declare
+ S3 : constant Wide_String := (''', X, ''');
+ X3 : Wide_Character;
+ begin
+ X3 := Wide_Character'Wide_Value (S3);
+
+ if X /= X3 then
+ raise Program_Error;
+ end if;
+ end;
+end;