calling template type shared method when it does not exist gives no error
gwikland opened this issue · 1 comments
gwikland commented
template foo {
}
template a {
param p : foo;
method test() {
p.hello(); // Raises no error in DLS
}
}
JonatanWaern commented
Probably blocked by template types in #65