From f462317925b3706a4184ba468a353e573a4877c5 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 2 Mar 2015 16:17:28 +0100 Subject: for functions that can be called as operators, show operator being implemented --- test/data/format/operatorOverloading.kt | 3 +++ test/data/format/operatorOverloading.md | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 test/data/format/operatorOverloading.kt create mode 100644 test/data/format/operatorOverloading.md (limited to 'test/data/format') diff --git a/test/data/format/operatorOverloading.kt b/test/data/format/operatorOverloading.kt new file mode 100644 index 00000000..6fe78e45 --- /dev/null +++ b/test/data/format/operatorOverloading.kt @@ -0,0 +1,3 @@ +class C { + fun plus(other: C): C +} diff --git a/test/data/format/operatorOverloading.md b/test/data/format/operatorOverloading.md new file mode 100644 index 00000000..fd0fa977 --- /dev/null +++ b/test/data/format/operatorOverloading.md @@ -0,0 +1,8 @@ +[test](test/index) / [C](test/-c/index) / [plus](test/-c/plus) + + +# plus + +`fun plus(other: [C](test/-c/index)): [C](test/-c/index)` +Implements **operator `+`** + -- cgit