Thread overview
Impure static
Nov 09, 2011
bearophile
Nov 09, 2011
Tobias Pankrath
Nov 09, 2011
Timon Gehr
November 09, 2011
This little D2 program, a pure function contains static variables initialized with calls to not pure functions:


int foo() {
    return 1;
}
pure int bar() {
    enum int x1 = foo();
    static immutable int x2 = foo();
    return x1;
}
void main() {}


The latest DMD gives:

test.d(5): Error: pure function 'bar' cannot call impure function 'foo'
test.d(5):        called from here: foo()
test.d(5):        called from here: foo()
test.d(6): Error: pure function 'bar' cannot call impure function 'foo'
test.d(6):        called from here: foo()
test.d(6):        called from here: foo()

I think I asked a similar question in past, is it right to expect DMD to compile this program?

Bye and thank you,
bearophile
November 09, 2011
> 
> I think I asked a similar question in past, is it right to expect DMD to compile this program?

If foo is CTFE-able, yes.
November 09, 2011
On 11/09/2011 02:16 PM, bearophile wrote:
> This little D2 program, a pure function contains static variables initialized with calls to not pure functions:
>
>
> int foo() {
>      return 1;
> }
> pure int bar() {
>      enum int x1 = foo();
>      static immutable int x2 = foo();
>      return x1;
> }
> void main() {}
>
>
> The latest DMD gives:
>
> test.d(5): Error: pure function 'bar' cannot call impure function 'foo'
> test.d(5):        called from here: foo()
> test.d(5):        called from here: foo()
> test.d(6): Error: pure function 'bar' cannot call impure function 'foo'
> test.d(6):        called from here: foo()
> test.d(6):        called from here: foo()
>
> I think I asked a similar question in past, is it right to expect DMD to compile this program?
>

Yes. Here is the bug report:
http://d.puremagic.com/issues/show_bug.cgi?id=6169