]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.ada/print_chars/foo.adb
This commit was manufactured by cvs2svn to create branch
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / print_chars / foo.adb
CommitLineData
384e4a9c
JB
1with Pck; use Pck;
2
3procedure Foo is
4 C : Character := 'a';
5 WC : Wide_Character := 'b';
6 WWC : Wide_Wide_Character := 'c';
7begin
8 Do_Nothing (C'Address); -- START
9 Do_Nothing (WC'Address);
10 Do_Nothing (WWC'Address);
11end Foo;