www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Reporting unsupported template instantiation

reply Kagamin <spam here.lot> writes:
http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=114518

Is there a way to report a custom error message for unsupported template
instantiations?
Aug 04 2010
parent BCS <none anon.com> writes:
Hello Kagamin,

 http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmar
 s.D&article_id=114518
 
 Is there a way to report a custom error message for unsupported
 template instantiations?
 
template Foo(T) { static assert(Chcek!(T), "message"); ... } template Bar(T) if (is( T == U)) { ... } template Bar(T) { static assert(false, "message"); } -- ... <IXOYE><
Aug 04 2010