aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/dependent-name2.C
blob: 9e0cbcee189b3bc529f062675fc72e6fdf077364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do compile }

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

// PR 10530. Thought a type was dependent.

template <typename T>
struct Foo {
  struct Inner {
    typedef int type;
  };
};

template <typename A> struct Bar {
  typedef typename Foo<int>::Inner::type type;
};