Guest User

Untitled

a guest
Mar 20th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. trait A {
  2. var u: BigInt
  3. var v: BigInt
  4. def f(x: BigInt): BigInt
  5. }
  6.  
  7. case class B(a: A)
  8.  
  9. object Example {
  10. def invariant(b: B) = {
  11. b.a.f(b.a.u) == b.a.v
  12. }
  13. }
Add Comment
Please, Sign In to add comment