aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/template/operator5.C
blob: 1c0c29231914b0c746017111fb60c2830e76eb75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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(); 
}