diff options
Diffstat (limited to 'cli/tests/ts_decorators_bundle.ts')
-rw-r--r-- | cli/tests/ts_decorators_bundle.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/ts_decorators_bundle.ts b/cli/tests/ts_decorators_bundle.ts index a8e2e952b..d67ea4d5f 100644 --- a/cli/tests/ts_decorators_bundle.ts +++ b/cli/tests/ts_decorators_bundle.ts @@ -1,5 +1,7 @@ /* eslint-disable */ +import { B } from "./subdir/more_decorators.ts"; + function Decorator() { return function ( target: Record<string, any>, @@ -20,3 +22,4 @@ class SomeClass { } new SomeClass().test(); +new B().method(); |