Subject: | char const* - is not supported |
The following code works:
8<---------------------------->8
use Inline CPP => <<'END';
char* test() {
return "Proverka";
}
END
sub main {
return test();
}
1;
8<---------------------------->8
But the following valid C++ code doesn't:
8<---------------------------->8
use Inline CPP => <<'END';
char const* test() {
return "Proverka";
}
END
sub main {
return test();
}
1;
8<---------------------------->8
It fails with
"Can't locate auto/.../test.al in @INC"