mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
296 B
D
13 lines
296 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice19950.d(8): Error: undefined identifier `NotHere`
|
|
fail_compilation/ice19950.d(9): Error: template instance `ice19950.baz!()` does not match template declaration `baz()(Foo)`
|
|
---
|
|
*/
|
|
alias Foo = NotHere;
|
|
alias Bar = baz!();
|
|
|
|
void baz()(Foo)
|
|
if (true)
|
|
{}
|