https://issues.dlang.org/show_bug.cgi?id=20823
Dennis <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |Vision CC| |[email protected] Hardware|x86_64 |All OS|Linux |All --- Comment #1 from Dennis <[email protected]> --- Reduced a bit more: ``` void boo(T)( scope void delegate(T[] data) fun) {} void goo(T)(/+scope+/ void delegate(T[] data) fun) {} void main() { void Execute(int[] data) {} goo(&Execute); // Works boo(&Execute); // Compiler error with DIP 1000 } ``` --
