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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [conversion/] [cond4.C] - Rev 693

Compare with Previous | Blame | View Log

// Origin: PR c++/45383
// { dg-do run }

struct null {
    null() {}
    template<class T>
    operator T*() const {
    return 0;
    }

    template<class C, class T>
    operator T C::*() const {
    return 0;
    }
private:
    null(const null&);
    null& operator=(const null&);
    void operator&() const;
};

static struct null null;

int
main()
{
    int* ptr = null;
    if (ptr == null)
        return 0;
    if (ptr != null)
        return 1;
}

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.