digitalmars.D - doc bug struct const D website
- sclytrack (14/14) Jun 09 2008 at the bottom of
 
at the bottom of
http://digitalmars.com/d/2.0/struct.html
there is example
struct S
{
    int[] buf;
    int a;
    S* opAssign(ref const S s)
    {
	a = s.a;   //error  const(float[]) to float[]
	return this;
    }
somebody else file bug.
bleh.
 Jun 09 2008








 
 
 
 sclytrack <sclytrack pi.be>