mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
import {A} from './safeA';
|
|
|
|
export let B = 20;
|
|
|
|
export function getProduct() {
|
|
return A * B; // OK: not accessed from top-level
|
|
}
|