From d948461cdda4930899ffdde28bb278bde8e44892 Mon Sep 17 00:00:00 2001 From: Emmanuel Nyarko Date: Fri, 17 May 2024 15:08:40 +0000 Subject: [PATCH] Remove opIndexAssign from test for now opIndexAssign is part of the functions that pass comnst reference parameters. and currently, D cannot bind to such functions due to a subtitution error. this issue has been reported and currently work is being done on fixing. issue here: https://forum.dlang.org/post/mailman.1183.1710952301.3719.digitalmars-d-bugs@puremagic.com --- source/stdcpp/test/map.d | 1 - 1 file changed, 1 deletion(-) diff --git a/source/stdcpp/test/map.d b/source/stdcpp/test/map.d index dd2db93..e18808d 100644 --- a/source/stdcpp/test/map.d +++ b/source/stdcpp/test/map.d @@ -11,6 +11,5 @@ import stdcpp.map; unittest { auto mymap = Map!(int, char).make(); - mymap.opIndexAssign(4, 'a'); }