September 09, 2023 [Issue 24138] New: [REG 2.103] MemberFunctionsTuple does not see final functions | ||||
---|---|---|---|---|
| ||||
https://issues.dlang.org/show_bug.cgi?id=24138 Issue ID: 24138 Summary: [REG 2.103] MemberFunctionsTuple does not see final functions Product: D Version: D2 Hardware: All OS: All Status: NEW Severity: regression Priority: P1 Component: phobos Assignee: nobody@puremagic.com Reporter: schveiguy@gmail.com ```d class C { final void foo() {} } import std.traits : MemberFunctionsTuple; pragma(msg, MemberFunctionsTuple!(C, "foo")); ``` Prior to 2.103, this outputs tuple(foo). After, it outputs (). Introduced here: https://github.com/dlang/phobos/pull/8664 -- |
Copyright © 1999-2021 by the D Language Foundation