Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
class call refinement
  • Loading branch information
mutalimov95 authored May 17, 2022
commit 0f04f8de7c930fd7506165e4de66865fed2f61dd
4 changes: 2 additions & 2 deletions extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ precedence. To refer to the member of the dispatch receiver, you can use the [qu
```kotlin
class Connection {
fun Host.getConnectionString() {
toString() // вызывает D.toString()
[email protected]() // вызывает C.toString()
toString() // вызывает Host.toString()
[email protected]() // вызывает Connection.toString()
}
}
```
Expand Down