Provide TODO as a substitution for not yet implemented method body.

#KT-8153
This commit is contained in:
Ilya Gorbunov
2015-07-14 18:37:28 +03:00
parent da3ec891d0
commit bfb116c0b2
2 changed files with 43 additions and 0 deletions
@@ -1,5 +1,12 @@
package kotlin
/**
* Always throws an [UnsupportedOperationException] stating that operation is not implemented.
*/
public val TODO: Nothing get() = throw UnsupportedOperationException("An operation is not implemented.")
/**
* Creates a tuple of type [Pair] from this and [that].
*