Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. trait CyclicA {
  2. val b = bind[CyclicB]
  3. }
  4.  
  5. trait CyclicB {
  6. val a = bind[CyclicA]
  7. }
  8.  
  9. val d = Design.newDesign
  10. d.build[CyclicA] { a =>
  11. // nothing to do
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement