KT-1536: parse Throwable as nullable in JavaDescriptorResolver

This commit is contained in:
Stepan Koltsov
2012-03-11 15:24:46 +04:00
parent 67d2a8dcca
commit 0c2b91aa10
4 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
// http://youtrack.jetbrains.com/issue/KT-1536
package test;
class MyException {
MyException(String message, Throwable cause) {}
}