File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ aa[std.encoding]=-dip1000
26
26
aa[std.exception] =-dip1000 # merged https://github.com/dlang/phobos/pull/6323; a workaround for https://issues.dlang.org/show_bug.cgi?id=18637
27
27
aa[std.file]=-dip25 # probably already fixed (std.uni); currently: undefined symbol pure nothrow @nogc return @safe std.uni.SliceOverIndexed!(std.uni.Grapheme).SliceOverIndexed std.uni.SliceOverIndexed!(std.uni.Grapheme).SliceOverIndexed.opSlice()
28
28
aa[std.format]=-dip25 # @system function std.range.primitives.put
29
- aa[std.functional]=-dip25 # DROP: cannot call @system function std.functional.__unittest_L1216_C7.memoize!(pickFirst).memoize
29
+ aa[std.functional]=-dip1000 # merged https://github.com/dlang/phobos/pull/6351
30
30
aa[std.getopt]=-dip1000
31
31
aa[std.json] =-dip1000
32
32
aa[std.math] =-dip1000
Original file line number Diff line number Diff line change @@ -1194,7 +1194,7 @@ template memoize(alias fun, uint maxSize)
1194
1194
}
1195
1195
1196
1196
// 16079: memoize should work with arrays
1197
- @safe unittest
1197
+ @system unittest // not @safe with -dip1000 due to memoize
1198
1198
{
1199
1199
int executed = 0 ;
1200
1200
T median (T)(const T[] nums) {
@@ -1237,7 +1237,7 @@ template memoize(alias fun, uint maxSize)
1237
1237
}
1238
1238
1239
1239
// 16079: memoize should work with classes
1240
- @safe unittest
1240
+ @system unittest // not @safe with -dip1000 due to memoize
1241
1241
{
1242
1242
int executed = 0 ;
1243
1243
T pickFirst (T)(T first)
You can’t perform that action at this time.
0 commit comments