Add failing test

This commit is contained in:
Andrew Morris
2023-07-26 10:25:33 +10:00
parent e5281a16f0
commit 42b8a5ad40

View File

@@ -0,0 +1,14 @@
export default function main() {
let stuff = {
foo() {
this.bar = "baz";
return this.bar;
},
bar: "bar",
};
return [
stuff.foo(),
stuff.bar,
];
}