Is there a difference between these different plac...
# getting-started
z
Is there a difference between these different placement of the
inline
modifier?
Copy code
inline val a: Int
    get() = 5
inline val b: Int
    inline get() = 5
val c: Int
    inline get() = 5
c
m
image.png
c
Can we avoid using the hallucination machine to answer questions? It even says there is a difference and then explains the three examples are the same.
plus1 2