Skip to content

Commit bab2356

Browse files
authored
Add future for bug when applying forwarding to badly formatted variable declaration (chapel-lang#25068)
[trivial, not reviewed] Adding a future for chapel-lang#25067
2 parents 2948b49 + b4da3a0 commit bab2356

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
internal error: UTI-MIS-1041 chpl version 2.1.0 pre-release (c783ceba8b)
2+
3+
Internal errors indicate a bug in the Chapel compiler,
4+
and we're sorry for the hassle. We would appreciate your reporting this bug --
5+
please see https://chapel-lang.org/bugs.html for instructions.
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
use Map;
2+
3+
class C {
4+
forwarding var map(int, real);
5+
}
6+
7+
var myC = new C();
8+
myC.add(1, 2.3);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bug: forwarding to a badly-formed variable declaration causes internal error
2+
3+
#25067

test/classes/forwarding/forwardToNonVar.good

Whitespace-only changes.

0 commit comments

Comments
 (0)