File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
source/dub/internal/dyaml Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 23
23
fail-fast : false
24
24
matrix :
25
25
include :
26
- # Disabled as we rely on DIP1000 `foreach (scope)` which GDC < 12 doesn't support
27
- # - { dc: gdc, dcpkg: gcc-gdc, dcbin: gdc }
26
+ - { dc: gdc, dcpkg: gcc-gdc, dcbin: gdc }
28
27
- { dc: ldc, dcpkg: ldc, dcbin: ldc2 }
29
28
- { dc: dmd, dcpkg: dmd, dcbin: dmd }
30
29
Original file line number Diff line number Diff line change @@ -2579,7 +2579,8 @@ enum castableToNode(T) = (is(T == struct) || is(T == class)) && is(typeof(T.opCa
2579
2579
@safe unittest
2580
2580
{
2581
2581
import dub.internal.dyaml : Loader, Node;
2582
- import std : split, to;
2582
+ import std.array : split;
2583
+ import std.conv : to;
2583
2584
2584
2585
static class MyClass
2585
2586
{
@@ -2601,7 +2602,8 @@ enum castableToNode(T) = (is(T == struct) || is(T == class)) && is(typeof(T.opCa
2601
2602
@safe unittest
2602
2603
{
2603
2604
import dub.internal.dyaml : Loader, Node;
2604
- import std : split, to;
2605
+ import std.array : split;
2606
+ import std.conv : to;
2605
2607
2606
2608
static class MyClass
2607
2609
{
You can’t perform that action at this time.
0 commit comments