chromium/third_party/blink/web_tests/external/wpt/console/console-log-symbol.any.js

// META: global=window,dedicatedworker,shadowrealm
"use strict";
// https://console.spec.whatwg.org/

test(() => {
    console.log(Symbol());
    console.log(Symbol("abc"));
    console.log(Symbol.for("def"));
    console.log(Symbol.isConcatSpreadable);
}, "Logging a symbol doesn't throw");