Fix warnings in stdlib samples and test modules

This commit is contained in:
Alexander Udalov
2021-07-25 17:23:55 +02:00
parent 0d1380c232
commit 3bc0eaff59
12 changed files with 26 additions and 11 deletions
@@ -599,6 +599,7 @@ class Collections {
}
@Sample
@Suppress("UNUSED_VARIABLE")
fun firstNotNullOf() {
data class Rectangle(val height: Int, val width: Int) {
val area: Int get() = height * width
@@ -14,6 +14,8 @@
* limitations under the License.
*/
@file:Suppress("UNUSED_ANONYMOUS_PARAMETER")
package samples.properties
import kotlin.properties.Delegates