Delete all VM-related test files including benchmark, call, error, foreign_class, and other API tests, along with their C source, headers, and Wren scripts. Rewrite test/README.md to describe only CLI unit tests and module resolution tests, removing references to VM, compiler, core library, and language semantics tests.
7 lines
171 B
Plaintext
7 lines
171 B
Plaintext
// Import a module from within a named package.
|
|
import "foo/within_foo" for Foo
|
|
// expect: ran foo module
|
|
// expect: ran bar module
|
|
|
|
System.print(Foo) // expect: from foo
|