summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/error4.C
blob: bd740d92a3143c0a45365c4b2b071843fc0863ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 21 Mar 2003 <nathan@codesourcery.com>

// PR 9898. Confusing error message

struct Wrapper {};

void Foo(int const &); // { dg-error "in passing" "" }

void Baz ()
{
  Foo (Wrapper ()); // { dg-error "Wrapper" "" }
}