Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail325.d
blob: bf7f305b1970ddcebd6c3cb2a9a3946fa539469a [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail325.d(12): Error: template `fun(T = int)(int w, int z)` has no type
---
*/
void
fun
(
T
=
int
)(
int
w
,
int
z
)
{}
void
main
()
{
auto
x
=
cast
(
void
function
(
int
,
int
))
fun
;
}