/**
 * Plain-script fixture for `server.runServiceContext(...)`.
 *
 * Reproduces the crash pattern exactly: a plain script under top-level await
 * that awaits an async helper which builds service work through the server.
 * `createServiceContext(...)` enters the ambient frame with
 * `AsyncLocalStorage.enterWith`, and resuming that frame across top-level
 * await segfaults Bun 1.3.x; `runServiceContext(...)` scopes the frame with
 * `AsyncLocalStorage.run` so this script must exit 0 and print the marker.
 */
export {};
//# sourceMappingURL=run-service-context-script.fixture.d.ts.map