blob: ae44d81f4da5985a46769db0eac3068b9750ee76 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=22646
/*
TEST_OUTPUT:
---
true
true
false
false
---
*/
static template Bug(string name)
{
enum bool ok = name.length < 3 || name[0..3] != "pad";
}
pragma(msg, Bug!"x".ok);
pragma(msg, Bug!"foo".ok);
pragma(msg, Bug!"pad".ok);
pragma(msg, Bug!"pad123".ok);