I have the following: ``` val identifiers = linke...
# announcements
e
I have the following:
Copy code
val identifiers = linkedSetOf<OddIdentifier>()
When I try to use
identifiers.add(thing)
within a
try
, like so
Copy code
try {
  // some other stuff
  identifiers.add(thing)
} catch (e: IllegalArgumentException) {
  Log.w("blah", "blah")
}
I'm getting a strange IDE error that's unable to parse the whole block