repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
class-deduction3.C
blob
13e001afd6b111439b0561c405bef3c895d35d00
1
// { dg-options -std=c++17 }
2
3
template <int I>
4
struct A { };
5
6
template <int I>
7
struct B
8
{
9
template<template<int>class T>
10
B(T<I>);
11
};
12
13
A<42> a;
14
B b (a);