From b511259a37aa9feee06a3ca92b7967552aa34104 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 11 Jul 2014 22:09:41 +0400 Subject: Support type parameters for functions and classes. --- test/data/classes/genericClass.kt | 3 +++ test/data/functions/genericFunction.kt | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 test/data/classes/genericClass.kt create mode 100644 test/data/functions/genericFunction.kt (limited to 'test/data') diff --git a/test/data/classes/genericClass.kt b/test/data/classes/genericClass.kt new file mode 100644 index 00000000..db20ff7e --- /dev/null +++ b/test/data/classes/genericClass.kt @@ -0,0 +1,3 @@ +class Klass { + +} \ No newline at end of file diff --git a/test/data/functions/genericFunction.kt b/test/data/functions/genericFunction.kt new file mode 100644 index 00000000..6e07d04b --- /dev/null +++ b/test/data/functions/genericFunction.kt @@ -0,0 +1,5 @@ + +/** + * generic function + */ +fun generic() {} \ No newline at end of file -- cgit