fix java.lang.Number type mapping to jet.Number (KT-2376)

This commit is contained in:
Alexander Udalov
2012-07-11 16:32:32 +04:00
parent 2315412c45
commit 2d6b8abbe1
7 changed files with 16 additions and 4 deletions
@@ -96,7 +96,7 @@ public class JetSignatureReader {
pos = end + 1;
c = signature.charAt(pos);
if (c == 'L' || c == '[' || c == 'T' || c == '?') {
if (c == 'L' || c == 'M' || c == '[' || c == 'T' || c == '?') {
pos = parseType(signature, pos, parameterVisitor.visitClassBound());
}