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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.oliva/] [typeof1.C] - Diff between revs 305 and 338

Only display areas with differences | Details | Blame | View Log

Rev 305 Rev 338
// { dg-do assemble }
// { dg-do assemble }
// Copyright (C) 1999 Free Software Foundation
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva 
// by Alexandre Oliva 
struct B {
struct B {
  int i;
  int i;
};
};
template  void foo(T b) {
template  void foo(T b) {
  b.T::i; // ok
  b.T::i; // ok
  // b.__typeof__(b)::i; // parse error, should this be accepted?
  // b.__typeof__(b)::i; // parse error, should this be accepted?
  typedef T t1;
  typedef T t1;
  b.t1::i; // ok
  b.t1::i; // ok
  typedef __typeof__(b) t2;
  typedef __typeof__(b) t2;
}
}
template void foo(B); // not needed for the crash
template void foo(B); // not needed for the crash
 
 

powered by: WebSVN 2.1.0

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