blob: 26ee9a3269e525726445233bae7390d79ff77c2f [file] [log] [blame]
// https://github.com/dlang/dmd/issues/20334
// EXTRA_FILES: imports/imp20344.c
import imports.imp20344;
string s = X;
const(char)* p = X;
void takes_string(string){ }
void takes_char_star(const(char)*){ }
void test20344(){
takes_string(X);
takes_char_star(X);
}