import/a.vim:
vim9script
import autoload '../autoload/b.vim'
export class A
final AO: b.B
endclass
autoload/b.vim:
vim9script
export class B
var foo: string;
def new()
this.foo = 'bar';
enddef
endclass
Source a.vim and immediately get this error:
Error detected while processing [...]\import\a.vim:
line 6:
E1010: Type not recognized: b.B
--