https://issues.dlang.org/show_bug.cgi?id=22239

--- Comment #2 from RazvanN <[email protected]> ---
Hmmm, this code fails also:

struct PostBlitted(alias al) 
{                                                                               
  this(this){}
  void x(){} //a member function so that an instance contains a frame pointer
}

void main()
{
  PostBlitted!(x => x) a;
  a.f;
}

void f(T)(T x)
{
    T y;
}

--

Reply via email to