On 08/21/2013 07:12 PM, Andrei Alexandrescu wrote: > > The deduper would be insensitive to alpha renaming, e.g. "int a = 10;" > and "int b = 10;" would be identical. This is not alpha renaming, it is just renaming. :o) Eg. "{int a = 10; foo(a);}" and "{int b = 10; foo(b);}" would be identical.