Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jobs:
fail-fast: false
matrix:
include:
# Disabled as we rely on DIP1000 `foreach (scope)` which GDC < 12 doesn't support
# - { dc: gdc, dcpkg: gcc-gdc, dcbin: gdc }
- { dc: gdc, dcpkg: gcc-gdc, dcbin: gdc }
- { dc: ldc, dcpkg: ldc, dcbin: ldc2 }
- { dc: dmd, dcpkg: dmd, dcbin: dmd }

Expand Down
6 changes: 4 additions & 2 deletions source/dub/internal/dyaml/node.d
Original file line number Diff line number Diff line change
Expand Up @@ -2579,7 +2579,8 @@ enum castableToNode(T) = (is(T == struct) || is(T == class)) && is(typeof(T.opCa
@safe unittest
{
import dub.internal.dyaml : Loader, Node;
import std : split, to;
import std.array : split;
import std.conv : to;

static class MyClass
{
Expand All @@ -2601,7 +2602,8 @@ enum castableToNode(T) = (is(T == struct) || is(T == class)) && is(typeof(T.opCa
@safe unittest
{
import dub.internal.dyaml : Loader, Node;
import std : split, to;
import std.array : split;
import std.conv : to;

static class MyClass
{
Expand Down
Loading