-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't try to complete scala 2 macro before the constructor (and its t…
…ype params) have been completed
- Loading branch information
1 parent
d788ef2
commit 974e4d3
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import scala.language.experimental.macros | ||
import scala.quoted.{Quotes, Expr, Type} | ||
|
||
trait TraitWithTypeParam[A]: | ||
inline def foo: Option[A] = ${ MacrosImpl.fooImpl[A] } | ||
def foo: Option[A] = macro MacrosImpl.compatFooImpl[A] | ||
|
||
object MacrosImpl: | ||
def fooImpl[A: Type](using quotes: Quotes): Expr[Option[A]] = ??? | ||
def compatFooImpl[A: c.WeakTypeTag](c: Context): c.Tree = ??? | ||
|
||
trait Context: | ||
type WeakTypeTag[A] | ||
type Tree |