[Issue 15063] Template Instantiation Accepts Invalid Code

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15063 Iain Buclaw changed: What|Removed |Added Priority|P1 |P3 --

[Issue 15063] Template Instantiation Accepts Invalid Code

2015-09-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15063 --- Comment #1 from Kenji Hara --- Reduced test case: void test1(alias pred = "a == b", T)(T a) { pragma(msg, 1); } void test1(int flag = 0, T)(T a) { pragma(msg, 2); } void main() { test1(1); } --

[Issue 15063] Template Instantiation Accepts Invalid Code

2015-09-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15063 Jack Stouffer changed: What|Removed |Added Keywords||accepts-invalid --