September 08, 2007
Already asked this in digitalmars.D.learn, but ...


What is the difference between:

void bar(const scope someStruct foo)

and

void bar(final const scope someStruct foo)
( = void bar(in someStruct foo) )

?

September 08, 2007
Funog schrieb:
> Already asked this in digitalmars.D.learn, but ...
> 
> 
Hmm ich can not compile such expression xD


> What is the difference between:
> 
> void bar(const scope someStruct foo)
> 
> and
> 
> void bar(final const scope someStruct foo)
> ( = void bar(in someStruct foo) )
> 
> ?
>