repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
ttp36.C
blob
c329bb429489cee6dd22d0b90f88920620224fcc
1
// Verify we propagate cv-quals when level-lowering a bound ttp.
2
3
template<class T>
4
struct B {
5
template<template<class> class TT>
6
void f(TT<T>*);
7
8
template<template<class> class TT>
9
void f(const TT<T>*); // { dg-bogus "cannot be overloaded" }
10
};
11
12
template struct B<int>;