do not combine receiverInfo with error selectorInfo
This commit is contained in:
Svetlana Isakova
2013-06-04 18:08:13 +04:00
parent ecec6acde8
commit 2337f4b948
2 changed files with 17 additions and 1 deletions
@@ -0,0 +1,13 @@
package foo
fun dispatch(request: Request) {
val <!UNUSED_VARIABLE!>url<!> = request.getRequestURI() as String
if (request.getMethod()?.length != 0) {
}
}
trait Request {
fun getRequestURI(): String?
fun getMethod(): String?
}