On Tuesday, 14 February 2017 at 01:31:10 UTC, John Colvin wrote:
On Monday, 13 February 2017 at 22:59:11 UTC, John Colvin wrote:[ snip ]sorry, made a typo, that should have beenalias int1 = Initial!(int, 1);static assert(int1.initial == 1); // typeof(int1.initial) == intstatic assert(int1.init == 1); // typeof(int1.init) == int1
What is the difference between alias Initial!(int, 1) int1; and alias int1 = Initial!(int, 1); ? Or was the typo in the comments alone? Thanks.