We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c34c8f commit 9b3aa11Copy full SHA for 9b3aa11
tests/pos/i2551/library_1.scala
@@ -0,0 +1,14 @@
1
+package scala {
2
+ package meta {
3
+ package config {
4
+ case class Version()
5
+
6
+ trait Aliases {
7
+ type Version = scala.meta.config.Version
8
+ val Version = scala.meta.config.Version
9
+ }
10
11
12
13
+ package object meta extends scala.meta.config.Aliases
14
+}
tests/pos/i2551/test_2.scala
@@ -0,0 +1,5 @@
+import scala.meta._
+object Test {
+ val v = Version()
0 commit comments