OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [template/] [ttp5.C] - Blame information for rev 328

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 301 jeremybenn
// { dg-do compile }
2
 
3
// Origin: sneechy@hotmail.com
4
 
5
// PR c++/8772: Incorrect diagnostics for template template parameter
6
// mismatch
7
 
8
template  struct A {
9
  template  struct B {
10
    enum { v = 1 };
11
  };
12
};
13
 
14
template