mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-05-10 03:00:06 -04:00
13 lines
156 B
TypeScript
13 lines
156 B
TypeScript
// //! test_output("foo")
|
|
|
|
export default () => {
|
|
class X {
|
|
foo = "foo";
|
|
}
|
|
|
|
return new X().foo;
|
|
};
|
|
|
|
// deno-lint-ignore no-unused-vars
|
|
class X {}
|