mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
321 B
D
14 lines
321 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail16206a.d(14): Error: `bool` expected as third argument of `__traits(getOverloads)`, not `"Not a bool"` of type `string`
|
|
---
|
|
*/
|
|
|
|
struct S
|
|
{
|
|
static int foo()() { return 0; }
|
|
}
|
|
|
|
alias AliasSeq(T...) = T;
|
|
alias allFoos = AliasSeq!(__traits(getOverloads, S, "foo", "Not a bool"));
|