Thread overview
[Issue 2211] New: new static if bug in 2.016
Jul 09, 2008
d-bugmail
Jul 09, 2008
d-bugmail
Jul 09, 2008
d-bugmail
Jul 10, 2008
d-bugmail
July 09, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2211

           Summary: new static if bug  in 2.016
           Product: D
           Version: 2.016
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: someanon@yahoo.com


http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.announce&artnum=12529

New bug introduced in 2.016  (2.015, 2.013 are ok)

$ ../dmd-v2.016/bin/dmd -c staticif.d
staticif.d(27): Error: no property 'f' for type 'staticif.AA'
staticif.d(27): Error: function expected before (), not 1 of type int
staticif.d(28): Error: no property 'f' for type 'staticif.BB'
staticif.d(28): Error: function expected before (), not 1 of type int

$ cat staticif.d

class A {
}

class B {
}

template T(X) {
static if (is(typeof(X) : A) ||
           is(typeof(X) : B) ) {
void f() {
}
}

}

class AA {
  mixin T!(A);
}

class BB {
  mixin T!(B);
}

int main() {
  AA a = new AA();
  BB b = new BB();
  a.f();
  b.f();

  return 0;
}


-- 

July 09, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2211





------- Comment #1 from shro8822@vandals.uidaho.edu  2008-07-09 15:31 -------

Invalid

I think. typeof(X) where X is a type just became invalid code and invalid code in an is results in false.


-- 

July 09, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2211





------- Comment #2 from 2korden@gmail.com  2008-07-09 17:17 -------
Just replace typeof(X) with X, it should fix your code.


-- 

July 10, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2211


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




------- Comment #3 from bugzilla@digitalmars.com  2008-07-10 05:13 -------
Invalid because the argument to typeof must be an expression, not a type.


--