Last active
December 12, 2015 00:28
Revisions
-
ogirardot revised this gist
Jan 31, 2013 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ object MyApp extends App { val b = new B() } trait Conflictor { @@ -10,4 +10,4 @@ class A {} object A extends Conflictor {} class B extends A with Conflictor {} -
ogirardot revised this gist
Jan 31, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ trait Conflictor { val log = "reduction" } class A {} object A extends Conflictor {} -
ogirardot revised this gist
Jan 31, 2013 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,9 @@ object MyApp extends App { val b = B() } trait Conflictor { val log = "reduction" } abstract sealed class A {} -
ogirardot created this gist
Jan 31, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ object MyApp extends App { val b = B() } trait Conflictor { val log = this.getClass().getName() } abstract sealed class A {} object A extends Conflictor {} case class B extends A with Conflictor {}