From 68d3bc8d76e550f98cf768362eb311d0cc4f3a0d Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 14 Jul 2014 19:34:52 +0400 Subject: Beautification and documentation. --- test/playground.kt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') diff --git a/test/playground.kt b/test/playground.kt index 9eb7d879..5206e10e 100644 --- a/test/playground.kt +++ b/test/playground.kt @@ -34,6 +34,7 @@ class ClassWithConstructor( /** * This is data class with constructor and two properties + * Also look at [Employee] * * $name Person's name * $age Person's age @@ -41,6 +42,8 @@ class ClassWithConstructor( */ data class Person(val name: ClassWithConstructor, val age: Int) {} +data class Employee(val name: ClassWithConstructor, val age: Int) {} + object Object { throws(javaClass()) fun objectFunction() { -- cgit