like, this bit of toy code will compile: ``` class...
# announcements
s
like, this bit of toy code will compile:
Copy code
class Container<T> {
  operator fun iterator(): Iterator<T> = TODO()
}

fun foo(container: Container<*>) {
  for (bar in container) {
    // do stuff with bar
  }
}