Декомпилированный вариант выглядит вот так:
public final class MainKt
{
public static final void main(@NotNull String[] args)
{
Intrinsics.checkParameterIsNotNull(args, "args");
List localList = getCollection(args[0]);
System.out.println(localList);
}
@NotNull
public static final List<Character> getCollection(@NotNull String s)
{
Intrinsics.checkParameterIsNotNull(s, "s");
String str = s; String tmp10_9 = str;
if (tmp10_9 == null) throw new TypeCastException("null cannot be cast to non-null..”);
char[] tmp30_27 = ((String)tmp10_9).toCharArray();
Intrinsics.checkExpressionValueIsNotNull(tmp30_27, "...");
return ArraysKt.toList(tmp30_27);
}
}