aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/friend8.C
blob: c1e93d94ab03fc7648b7a0e3d924ca5b77d50dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-options "-std=c++98 -pedantic-errors" }
// { dg-do assemble  }
// 
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 14 Aug 2000 <nathan@codesourcery.com>

// We failed to diagnose when a class friend declaration did not use an
// elaborated type specifier.

struct Y;
struct Z;
struct X
{
  friend class Z;
  friend Y;         // { dg-error "" } friend must use aggr tag
};