view gcc/testsuite/g++.dg/template/spec12.C @ 152:2b5abeee2509

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

// { dg-do compile }
// Contributed by: Wolfgang Bangerth <bangerth at dealii dot org>
// PR c++/14409: Accepts invalid function signature for explicit instantiation

struct X 
{ 
    template <typename U> 
    void foo (U) {}

    template <typename U> 
    void foo_const (U) const {}
};

template void X::foo (int); 
template void X::foo_const (int) const; 

template void X::foo (int) const;   // { dg-error "" }
template void X::foo_const (int);   // { dg-error "" }