given following code:
class Foo {
foo test bar {
println("hello world!")
}
}
fun main(args : Array<String>) {
Foo()
}
execution result would be “hello world!”
what are “foo”, “test” and “bar”? can we say compiler considering them as unresolved user defined annotations and ignoring them?