Skip to content

Instantly share code, notes, and snippets.

@RdeWilde
Created December 28, 2018 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RdeWilde/3c76bd09360132dd611dc23cd21b2c2c to your computer and use it in GitHub Desktop.
Save RdeWilde/3c76bd09360132dd611dc23cd21b2c2c to your computer and use it in GitHub Desktop.
//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