[Issue 22239] Can't migrate from postblits if they are used without frame pointer
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu Aug 26 10:01:08 UTC 2021
https://issues.dlang.org/show_bug.cgi?id=22239
RazvanN <razvan.nitu1305 at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |razvan.nitu1305 at gmail.com
--- Comment #1 from RazvanN <razvan.nitu1305 at gmail.com> ---
This affects normal constructors as well (copy constructors are just a
particularization of a normal constructor):
struct Normal(alias al)
{
this(int a) {}
void x() {}
}
void main()
{
Normal!(x => x) a;
a.f;
}
void f(T)(T x)
{
T y = 6;
}
--
More information about the Digitalmars-d-bugs
mailing list