blob: f1eae4203bcb634c0931c16ec3dd409c301b39dd [file] [log] [blame]
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// RUN: cxx_compiler -c %s -o %t.o
// RUN: bindump %t.o | FileCheck prefixes %s
// CHECK-DAG: _Z4funcILi4EE4struIXT_EERKS1_
template <int I> struct stru {};
template <int I> stru<I> func(stru<I> const&);
template <> stru<4> func<4>(stru<4> const&) { stru<4> w; return w; }