The example at: http://www.d-programming-language.org/mixin.html, appears below:

template GenStruct(char[] Name, char[] M1) {
    const char[] GenStruct = "struct " ~ Name ~ "{ int " ~ M1 ~ "; }";
} mixin(GenStruct!("Foo", "bar"));

"which generates:" (according to the site):

struct Foo { int bar; }

gives me an error:

Error: template instance GenStruct!("Foo","bar") GenStruct!("Foo","bar") does not match template declaration GenStruct(char[] Name,char[] M1)

Is it mine or their bug ?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

The text is outdated. Replace char[] with string and it'll work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.