view gcc/testsuite/g++.dg/cpp1z/conv-tmpl1.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

// PR c++/91465 - ICE with template codes in check_narrowing.
// { dg-do compile { target c++17 } }

enum class E { Z };

template <typename F>
void foo(F)
{
  E{char(0)};
}