mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
509 B
D
14 lines
509 B
D
// REQUIRED_ARGS: -de
|
|
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/b19717a.d(14): Error: forward reference to template `a`
|
|
fail_compilation/b19717a.d(14): Error: forward reference to template `a`
|
|
fail_compilation/b19717a.d(14): Error: none of the overloads of `a` are callable using argument types `()`
|
|
fail_compilation/b19717a.d(13): Candidates are: `b19717a.a(int b)`
|
|
fail_compilation/b19717a.d(14): `b19717a.a(int b = a)`
|
|
---
|
|
*/
|
|
module b19717a;
|
|
|
|
auto a(int b) {}
|
|
auto a(int b = a) {}
|