Skip to content

Heads up: dmd fix for alias parameter missing qualifier breaks unittest #2455

Open
@ntrel

Description

@ntrel

Hi,
My pull for dmd:
dlang/dmd#11320

breaks a unittest in utils/vibe/internal/meta/codegen.d:
https://github.com/vibe-d/vibe.d/blob/master/utils/vibe/internal/meta/codegen.d#L95

My dmd pull needs that line:

static assert (getSymbols!Type.stringof == TypeTuple!(A, B).stringof);

Changed to:

static assert (getSymbols!Type.stringof == TypeTuple!(A, const(B), const(A)).stringof);

Does that look correct?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions