Add failing test

This commit is contained in:
Andrew Morris
2023-04-15 17:34:36 +09:00
parent f0685828de
commit 2b5b7d17a8
2 changed files with 10 additions and 0 deletions

1
inputs/failing/Type.ts Normal file
View File

@@ -0,0 +1 @@
export type Type = string;

View File

@@ -0,0 +1,9 @@
// test_output! "done"
import { type Type } from "./Type.ts";
export default function main() {
const msg: Type = "done";
return msg;
}