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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [auto20.C] - Rev 707

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

// Test for proper non-deduced context handling of the initializer
// for an auto declaration/new.
// { dg-options -std=c++0x }

struct with_apply
{
  template <unsigned>
  void apply(const double&){}
};

auto p = &with_apply::apply<0>;
auto pp = new auto(&with_apply::apply<0>);

template <class T>
void f()
{
  auto p = &T::template apply<0>;
}

template void f<with_apply>();

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.