Created
December 28, 2018 17:42
-
-
Save RdeWilde/3c76bd09360132dd611dc23cd21b2c2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//actual val java.math.BigInteger.NEGATIVE_ZERO : java.math.BigInteger = BigInteger("-1") // Extension property cannot be initialized because it has no backing field | |
//actual val java.math.BigInteger.NEGATIVE_ZERO : BigInteger = BigInteger("-1") | |
//actual val java.math.BigInteger.NEGATIVE_ZERO : BigInteger = java.math.BigInteger("-1") | |
actual typealias BigInteger = java.math.BigInteger | |
//actual val BigInteger.NEGATIVE_ZERO : java.math.BigInteger = BigInteger("-1") // Extension property cannot be initialized because it has no backing field | |
//actual val BigInteger.NEGATIVE_ZERO : BigInteger = BigInteger("-1") | |
//actual val BigInteger.NEGATIVE_ZERO : BigInteger = java.math.BigInteger("-1") | |
//actual val BigInteger.NEGATIVE_ZERO : BigInteger | |
// get() = BigInteger("-1") // Actual property has no corresponding expected declaration (because of companion) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment