2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / class-deduction49.C
blob658ae43e7005564e43161a5f07de6b2e00d580df
1 // PR c++/84015
2 // { dg-do compile { target c++17 } }
4 template <int I>
5 struct A { };
7 template <int I>
8 struct B
10   template<template<auto>class T>
11   B(T<I>);
14 A<42> a;
15 B b (a);