A symbol-keyed index signature is declared. Which line is rejected by the compiler?const sym = Symbol(); interface Bag { [k: symbol]: number; } const b: Bag = { [sym]: 1 }; const a = b[sym]; // line A const c = b["x"]; // line B