PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction3.C
blob13e001afd6b111439b0561c405bef3c895d35d00
1 // { dg-options -std=c++17 }
3 template <int I>
4 struct A { };
6 template <int I>
7 struct B
9   template<template<int>class T>
10   B(T<I>);
13 A<42> a;
14 B b (a);