From 931a37df263768f0642b8bd41192e7caf0701ff7 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 8 Jan 2016 18:16:12 +0100 Subject: include extension function in the list of extensions for a class if the class is an upper bound of the receiver type parameter --- core/testdata/format/receiverParameterTypeBound.kt | 5 +++++ core/testdata/format/receiverParameterTypeBound.md | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 core/testdata/format/receiverParameterTypeBound.kt create mode 100644 core/testdata/format/receiverParameterTypeBound.md (limited to 'core/testdata/format') diff --git a/core/testdata/format/receiverParameterTypeBound.kt b/core/testdata/format/receiverParameterTypeBound.kt new file mode 100644 index 00000000..2b5f6f17 --- /dev/null +++ b/core/testdata/format/receiverParameterTypeBound.kt @@ -0,0 +1,5 @@ +open class Foo { +} + +fun T.xyzzy() { +} diff --git a/core/testdata/format/receiverParameterTypeBound.md b/core/testdata/format/receiverParameterTypeBound.md new file mode 100644 index 00000000..872158ac --- /dev/null +++ b/core/testdata/format/receiverParameterTypeBound.md @@ -0,0 +1,20 @@ +[test](test/index) / [Foo](test/-foo/index) + + +# Foo + +`open class Foo` + + + +### Constructors + + +| [<init>](test/-foo/-init-) | `Foo()` | + + +### Extension Functions + + +| [xyzzy](test/xyzzy) | `fun <T : [Foo](test/-foo/index)> T.xyzzy(): Unit` | + -- cgit