Skip to content

Instantly share code, notes, and snippets.

@bfritz
Created September 5, 2014 02:30
Show Gist options
  • Save bfritz/7fec2062acccf7ed9d5e to your computer and use it in GitHub Desktop.
Save bfritz/7fec2062acccf7ed9d5e to your computer and use it in GitHub Desktop.
"sbt test" output with scala shapeless errors
[info] Loading global plugins from /home/brad/.sbt/0.13/plugins
[info] Set current project to org.indyscala.parboiled.UnitConverter (in build file:/tmp/vlahupetar/)
[info] Compiling 1 Scala source to /tmp/vlahupetar/target/scala-2.11/classes...
[error] /tmp/vlahupetar/src/main/scala/org/indyscala/parboiled/UnitConverter.scala:71: overloaded method value apply with alternatives:
[error] [P, S, T, U, V, W, X, Y, Z, R](f: (P, S, T, U, V, W, X, Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[P,shapeless.::[S,shapeless.::[T,shapeless.::[U,shapeless.::[V,shapeless.::[W,shapeless.::[X,shapeless.::[Y,shapeless.::[Z,shapeless.HNil]]]]]]]]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(P, S, T, U, V, W, X, Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [S, T, U, V, W, X, Y, Z, R](f: (S, T, U, V, W, X, Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[S,shapeless.::[T,shapeless.::[U,shapeless.::[V,shapeless.::[W,shapeless.::[X,shapeless.::[Y,shapeless.::[Z,shapeless.HNil]]]]]]]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(S, T, U, V, W, X, Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [T, U, V, W, X, Y, Z, R](f: (T, U, V, W, X, Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[T,shapeless.::[U,shapeless.::[V,shapeless.::[W,shapeless.::[X,shapeless.::[Y,shapeless.::[Z,shapeless.HNil]]]]]]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(T, U, V, W, X, Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [U, V, W, X, Y, Z, R](f: (U, V, W, X, Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[U,shapeless.::[V,shapeless.::[W,shapeless.::[X,shapeless.::[Y,shapeless.::[Z,shapeless.HNil]]]]]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(U, V, W, X, Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [V, W, X, Y, Z, R](f: (V, W, X, Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[V,shapeless.::[W,shapeless.::[X,shapeless.::[Y,shapeless.::[Z,shapeless.HNil]]]]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(V, W, X, Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [W, X, Y, Z, R](f: (W, X, Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[W,shapeless.::[X,shapeless.::[Y,shapeless.::[Z,shapeless.HNil]]]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(W, X, Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [X, Y, Z, R](f: (X, Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[X,shapeless.::[Y,shapeless.::[Z,shapeless.HNil]]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(X, Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [Y, Z, R](f: (Y, Z) => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[Y,shapeless.::[Z,shapeless.HNil]],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[(Y, Z) => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [Z, R](f: Z => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.::[Z,shapeless.HNil],shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[Z => R])org.parboiled2.Rule[j.In,j.Out] <and>
[error] [R](f: () => R)(implicit j: org.parboiled2.support.ActionOps.SJoin[shapeless.HNil,shapeless.HNil,R], implicit c: org.parboiled2.support.FCapture[() => R])org.parboiled2.Rule[j.In,j.Out]
[error] cannot be applied to (org.parboiled2.Rule[shapeless.HNil,shapeless.::[org.parboiled2.Rule[shapeless.HNil,shapeless.HNil],shapeless.HNil]])
[error] ch('.') | ch(',') ~> push(ch('.'))
[error] ^
[error] one error found
[error] (compile:compile) Compilation failed
[error] Total time: 9 s, completed Sep 4, 2014 10:28:28 PM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment