aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/expr/call2.C
blob: c4a2dac82ff8d3693e2c92cf6846e1ad15213923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 11 Sep 2003 <nathan@codesourcery.com>
// Origin: Wolfgang Bangerth <bangerth@dealii.org> 
// PR c++/12184. ICE

class C; 
class D;
bool mm(D); 
 
void g(C& f) { 
  mm(f); // { dg-error "parameter" }
}