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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [tc1/] [dr161.C] - Rev 693

Go to most recent revision | Compare with Previous | Blame | View Log

// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR161: Access to protected nested type 

namespace N1 {
  struct A 
  {
  protected:
    typedef int type;
  };

  struct B : public A
  {
    void test(void)
    {
      A::type t;
    }

    friend void ftest(void)
    {
      A::type t;
    }
  };
}


namespace N2 {
  template <class T>
  struct A 
  {
  protected:
    typedef int type;
  };

  template <class T>
  struct B : public A<T>
  {
    void test(B b)
    {
      typename A<T>::type t;
    }

    friend void ftest(B b)
    {
      typename A<T>::type t;
    }
  };

  template struct B<void>;
}

Go to most recent revision | 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.