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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [ttp5.C] - Blame information for rev 696

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

Line No. Rev Author Line
1 693 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