OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.jason/] [conversion6.C] - Rev 699

Compare with Previous | Blame | View Log

// { dg-do run  }
// PRMS Id: g++/6034

extern "C" int printf (const char *, ...);

class Base
{
        char x;
};

template <class T>
// remove the public Base inheritance and the problem goes away...
class Container : public Base
{
public:

    Container(const T& aValue): myValue(aValue) { }
    
    operator const T&(void) const
    {
        printf("Container::const T& called\n");
        return myValue;
    }
    
protected:

    T myValue;
};

typedef unsigned short Type;

typedef Container<Type> TypeContainer;

int main(void)
{
    TypeContainer myTypeContainer(2);
    Type t = myTypeContainer;

    printf ("myType = %d\n", t);
    return t != 2;
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.