view gcc/testsuite/g++.dg/cpp2a/fn-template4.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

// P0846R0
// { dg-do compile }
// { dg-options "-std=c++2a" }

template <typename T> void foo() { }
template <typename T> void bar(int) { }
int main()
{
  foo<float>();
  bar<int>(1);
}