diff options
| author | Fenzland <fenzland@163.com> | 2020-05-02 01:03:54 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-01 13:03:54 -0400 |
| commit | 25b765c123ee4779d223b10adbea8db5c472d5a0 (patch) | |
| tree | c60b73066c4edf806087f04cb64331349042367b /cli/tests/error_025_tab_indent | |
| parent | fa396c0a22f1de4a55ca3ad918f1ba4566d2575b (diff) | |
fix misaligned error reporting on tab char (#5032)
Diffstat (limited to 'cli/tests/error_025_tab_indent')
| -rw-r--r-- | cli/tests/error_025_tab_indent | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cli/tests/error_025_tab_indent b/cli/tests/error_025_tab_indent new file mode 100644 index 000000000..35a25bcea --- /dev/null +++ b/cli/tests/error_025_tab_indent @@ -0,0 +1,9 @@ +function foo() { + throw Error("bad"); +} + +function bar() { + foo(); +} + +bar(); |
