aboutsummaryrefslogtreecommitdiff
path: root/test/AdaFrontend/array_range_ref.adb
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-03 21:48:02 +0000
committerChris Lattner <sabre@nondot.org>2007-04-03 21:48:02 +0000
commit2a088e4f09617d43668b75b727f650d6ebfeb77c (patch)
tree58c7ba59bdcb0045af35afee5515a7c6bd3d1a98 /test/AdaFrontend/array_range_ref.adb
parent327e0029c01eaec5a9c40c06d463bd2c102bf1b7 (diff)
move these to FrontendAda
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35631 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/AdaFrontend/array_range_ref.adb')
-rw-r--r--test/AdaFrontend/array_range_ref.adb7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/AdaFrontend/array_range_ref.adb b/test/AdaFrontend/array_range_ref.adb
deleted file mode 100644
index f7cba01ed8..0000000000
--- a/test/AdaFrontend/array_range_ref.adb
+++ /dev/null
@@ -1,7 +0,0 @@
--- RUN: %llvmgcc -c %s -o /dev/null
-procedure Array_Range_Ref is
- A : String (1 .. 3);
- B : String := A (A'RANGE)(1 .. 3);
-begin
- null;
-end;