diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-08-30 02:08:45 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-08-30 02:08:45 +0200 |
| commit | 491e62664394a8689a3f8904fbe8dbc3dea05524 (patch) | |
| tree | 7142cf8d94fc6f9cf953d42d9c136b77f65d8034 /testsuite/fail_compilation/non_constant_array_dimension.elna | |
| parent | 08d9c4292ebba3e320c1dbaca4fa06c83f6fc7fb (diff) | |
| download | elna-491e62664394a8689a3f8904fbe8dbc3dea05524.tar.gz | |
Fix ICEs with recursive type declarations
Diffstat (limited to 'testsuite/fail_compilation/non_constant_array_dimension.elna')
| -rw-r--r-- | testsuite/fail_compilation/non_constant_array_dimension.elna | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/fail_compilation/non_constant_array_dimension.elna b/testsuite/fail_compilation/non_constant_array_dimension.elna new file mode 100644 index 0000000..4ab0d34 --- /dev/null +++ b/testsuite/fail_compilation/non_constant_array_dimension.elna @@ -0,0 +1,9 @@ +proc f(len: Int) +var + array: [len]Int (* @Error Array dimensions for type 'Int' should be constant *) +begin + return + +begin + f(5) +end. |
