URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [template/] [operator5.C] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 7 Dec 2004 <nathan@codesourcery.com>
// PR 18803: reject legal
// Origin: Wolfgang Bangerth <bangerth@dealii.org>
struct A {
int operator() ();
};
template <int> void foo () {
A &a = *new A();
const int i = a();
}
Go to most recent revision | Compare with Previous | Blame | View Log