dodyg / AndroidRivers

Anxiety free news reader for Android - developed using Kotlin
http://rivers.silverkeytech.com
Other
321 stars 79 forks source link

Fixed compilation for 'assignment in an expression context' #6

Closed svtk closed 11 years ago

svtk commented 11 years ago

We prohibit things like val a = while(b) { ... } val b: Unit = c = 1 when statement appears in an expression context.

For function not block body it has worked so far (it was a bug actually). This commit fixes a compilation.