Created
November 3, 2015 02:32
-
-
Save wheaties/f0fe29e304eb13eb04af to your computer and use it in GitHub Desktop.
failed use of imports
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 characters
| import export._ | |
| //contrived example | |
| trait LF[A] extends DepFn[A] | |
| @imports[LF] | |
| object LF{ | |
| //stuff | |
| } | |
| /* | |
| [error] /Users/oreese/Workspace/playground/LF.scala:165: $tc has an unsupported kind | |
| [error] @imports[LF] | |
| [error] ^ | |
| [error] /Users/oreese/Workspace/playground/LF.scala:165: trait LF takes type parameters | |
| [error] @imports[LF] | |
| [error] ^ | |
| [error] two errors found | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment