dmd/compiler/test/compilable/ddoc14633.d
2022-07-09 18:53:07 +02:00

17 lines
313 B
D

// PERMUTE_ARGS:
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -w -o-
/** Blah
Params:
T = some type
test = something
overnext = for testing overloaded functions
*/
template case1(T)
{
void case1(R)(R test) { }
void case1(R)(R test, string overnext) { }
}
///ditto
alias case2 = case1!int;