svoid test_SynchronizedTypedArrayList() { var list = new SynchronizedTypedArrayList(S.class); list.add("hello"); assertEqualsVerbose(ll("hello"), list); assertException(-> list.add(123)); assertEqualsVerbose(ll("hello"), list); }