www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 7846] New: Forward referenced storage class is not applied in certain cases

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7846

           Summary: Forward referenced storage class is not applied in
                    certain cases
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: timon.gehr gmx.ch



static assert(is(typeof(x)==const(int))); // pass
static assert(!is(typeof({x=2;}))); // pass
pragma(msg, typeof(x)); // "int"
pragma(msg, is(typeof({x=2;}))); // "true"
const int x;
pragma(msg, typeof(x)); // "const(int)"
pragma(msg, is(typeof({x=2;}))); // "false"

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Apr 06 2012
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=7846


SomeDude <lovelydear mailmetrash.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lovelydear mailmetrash.com



PDT ---
I don't understand. I have to add const int x; at the beginning in order for
this test to pass.
Then I get:
PS E:\DigitalMars\dmd2\samples> dmd -c bug.d
const(int)
false
bug.d(11): Error: declaration bug.main.x is already defined
const(int)
false

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Apr 21 2012