async-disposable-stack-empty.js (281B)
1 // |jit-test| skip-if: !getBuildConfiguration("explicit-resource-management"); --enable-explicit-resource-management 2 3 4 async function testAsyncDisposableStackEmpty() { 5 { 6 await using stack = new AsyncDisposableStack(); 7 } 8 } 9 10 testAsyncDisposableStackEmpty(); 11 drainJobQueue();