The compiler error is telling you that `it` is onl...
# getting-started
b
The compiler error is telling you that
it
is only guarranteed to have type
Any
(so it can be of any type) but
classRepo.save
requires an argument of type
AclClass
, so you cannot pass
it
to
save
in all cases. I don't know enough about the classes you use though to tell you how to fix it