Scott Meyers' DConf 2014 keynote "The Last Thing D Needs"

Kagamin via Digitalmars-d-announce digitalmars-d-announce at puremagic.com
Thu May 29 03:41:58 PDT 2014


On Wednesday, 28 May 2014 at 05:40:26 UTC, Jesse Phillips wrote:
> When he explained why C++ inferred a const int type as int, he 
> tripped me up because D does drop const for value types.

Hmm, this bit me (doesn't compile):
void f(in char[] s)
{
   auto s1=s;
   s1=s;
}


More information about the Digitalmars-d-announce mailing list