Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert unconditional lint of Inlined expansion #22815

Merged
merged 3 commits into from
Mar 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions compiler/src/dotty/tools/dotc/transform/CheckUnused.scala
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,10 @@ class CheckUnused private (phaseMode: PhaseMode, suffix: String) extends MiniPha
refInfos.inlined.push(tree.call.srcPos)
ctx
override def transformInlined(tree: Inlined)(using Context): tree.type =
transformAllDeep(tree.expansion) // traverse expansion with nonempty inlined stack to avoid registering defs
//transformAllDeep(tree.expansion) // traverse expansion with nonempty inlined stack to avoid registering defs
val _ = refInfos.inlined.pop()
transformAllDeep(tree.call)
if !tree.call.isEmpty && phaseMode.eq(PhaseMode.Aggregate) then
transformAllDeep(tree.call)
tree

override def prepareForBind(tree: Bind)(using Context): Context =
Expand Down
1 change: 1 addition & 0 deletions compiler/test/dotc/neg-best-effort-pickling.excludelist
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ i20317a.scala # recursion limit exceeded
i11226.scala # missing type
i974.scala # cyclic reference
i13864.scala # missing symbol in pickling
type-params.scala # recursion limit exceeded

# semantic db generation fails in the first compilation
i15158.scala # cyclic reference - stack overflow
103 changes: 103 additions & 0 deletions tests/neg/type-params.check
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
-- [E053] Type Error: tests/neg/type-params.scala:14:13 ----------------------------------------------------------------
14 | type t = x[x] // error
| ^^^^
| x does not take type parameters
|
| longer explanation available when compiling with `-explain`
-- [E053] Type Error: tests/neg/type-params.scala:16:13 ----------------------------------------------------------------
16 | val foo: s[Int] // error
| ^^^^^^
| s does not take type parameters
|
| longer explanation available when compiling with `-explain`
-- Error: tests/neg/type-params.scala:21:26 ----------------------------------------------------------------------------
21 | object mp extends Monad[Tuple2] // error
| ^^^^^^
| Type argument [T1, T2] =>> (T1, T2) does not have the same kind as its bound [x]
-- Error: tests/neg/type-params.scala:24:26 ----------------------------------------------------------------------------
24 | trait ms1 extends Monad[String] // error
| ^^^^^^
| Type argument String does not have the same kind as its bound [x]
-- Error: tests/neg/type-params.scala:25:29 ----------------------------------------------------------------------------
25 | trait ms2[t] extends Monad[t] // error
| ^
| Type argument t does not have the same kind as its bound [x]
-- Error: tests/neg/type-params.scala:26:35 ----------------------------------------------------------------------------
26 | trait ms3[m[_], t] extends Monad[m[t]] // error -- added to check regression on bug
| ^^^^
| Type argument m[t] does not have the same kind as its bound [x]
-- Error: tests/neg/type-params.scala:31:31 ----------------------------------------------------------------------------
31 | trait Bar2[m[_]] extends Foo[m] // error check that m is properly recognized as kind *->*, while * is expected
| ^
| Type argument m does not have the same kind as its bound
-- [E053] Type Error: tests/neg/type-params.scala:37:20 ----------------------------------------------------------------
37 |class t1701 extends java.lang.Cloneable[String, Option, Int] // error
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| Cloneable does not take type parameters
|
| longer explanation available when compiling with `-explain`
-- [E053] Type Error: tests/neg/type-params.scala:39:24 ----------------------------------------------------------------
39 |trait t0842[T] { def m: this.type[T] = this } // error
| ^^^^^^^^^^^^
| (t0842.this : t0842[T]) does not take type parameters
|
| longer explanation available when compiling with `-explain`
-- [E134] Type Error: tests/neg/type-params.scala:45:10 ----------------------------------------------------------------
45 | println(a[A]) // error
| ^
| None of the overloaded alternatives of method apply in trait Function1 with types
| (v1: t278.this.A): Unit
| (): Unit
| match type arguments [t278.this.A] and expected type Any
-- [E120] Naming Error: tests/neg/type-params.scala:44:6 ---------------------------------------------------------------
44 | def a = (p: A) => () // error
| ^
| Double definition:
| def a: () => Unit in trait t278 at line 43 and
| def a: t278.this.A => Unit in trait t278 at line 44
| have the same type after erasure.
|
| Consider adding a @targetName annotation to one of the conflicting definitions
| for disambiguation.
-- Error: tests/neg/type-params.scala:4:7 ------------------------------------------------------------------------------
4 | "".==[Int] // error
| ^^^^^^^^^^
| method == in class Any does not take type parameters
-- Error: tests/neg/type-params.scala:5:17 -----------------------------------------------------------------------------
5 | ("": AnyRef).==[Int] // error
| ^^^^^^^^^^^^^^^^^^^^
| method == in class Any does not take type parameters
-- Error: tests/neg/type-params.scala:6:17 -----------------------------------------------------------------------------
6 | ("": Object).==[Int] // error
| ^^^^^^^^^^^^^^^^^^^^
| method == in class Any does not take type parameters
-- Error: tests/neg/type-params.scala:9:14 -----------------------------------------------------------------------------
9 | classOf[Int][Int] // error
| ^^^^^^^^^^^^^^^^^
| illegal repeated type application
| You might have meant something like:
| classOf[Int, Int]
-- [E140] Cyclic Error: tests/neg/type-params.scala:34:11 --------------------------------------------------------------
34 | def g[X, A[X] <: A[X]](x: A[X]) = x // error // error
| ^
| illegal cyclic type reference: upper bound ... of type A refers back to the type itself
|
| Run with -explain-cyclic for more details.
-- [E053] Type Error: tests/neg/type-params.scala:34:28 ----------------------------------------------------------------
34 | def g[X, A[X] <: A[X]](x: A[X]) = x // error // error
| ^^^^
| A does not take type parameters
|
| longer explanation available when compiling with `-explain`
-- [E140] Cyclic Error: tests/neg/type-params.scala:35:8 ---------------------------------------------------------------
35 | def f[C[X] <: C[X]](l: C[_]) = l.x // error // error
| ^
| illegal cyclic type reference: upper bound ... of type C refers back to the type itself
|
| Run with -explain-cyclic for more details.
-- [E053] Type Error: tests/neg/type-params.scala:35:25 ----------------------------------------------------------------
35 | def f[C[X] <: C[X]](l: C[_]) = l.x // error // error
| ^^^^
| C does not take type parameters
|
| longer explanation available when compiling with `-explain`
45 changes: 45 additions & 0 deletions tests/neg/type-params.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@

def `t8219 Any == is not overloaded in error message`: Unit =
// Scala 2 once defined AnyRef == and Any == as overloaded. Spec defines only Any ==.
"".==[Int] // error
("": AnyRef).==[Int] // error
("": Object).==[Int] // error

def `extra type arg to class literal` =
classOf[Int][Int] // error

class `various ancient kindedness`:

class WellKinded[x]:
type t = x[x] // error
trait WellKindedBounded[s <: Throwable]:
val foo: s[Int] // error
class WellKindedWrongSyntax[s <: List] // must be s[x] <: List[x] ?

class Monad[m[x]]

object mp extends Monad[Tuple2] // error

// expecting types of kind *->*
trait ms1 extends Monad[String] // error
trait ms2[t] extends Monad[t] // error
trait ms3[m[_], t] extends Monad[m[t]] // error -- added to check regression on bug

// expecting types of kind *
trait Foo[x]
trait Bar1[m[_]] extends Foo[m[Int]] // check that m[Int] is properly recognized as kind-*
trait Bar2[m[_]] extends Foo[m] // error check that m is properly recognized as kind *->*, while * is expected

def `t2918 t5093 detect cyclic error` =
def g[X, A[X] <: A[X]](x: A[X]) = x // error // error
def f[C[X] <: C[X]](l: C[_]) = l.x // error // error

class t1701 extends java.lang.Cloneable[String, Option, Int] // error

trait t0842[T] { def m: this.type[T] = this } // error

trait t278:
class A
def a = () => ()
def a = (p: A) => () // error
println(a[A]) // error
4 changes: 0 additions & 4 deletions tests/untried/neg/class-of-double-targs.check

This file was deleted.

3 changes: 0 additions & 3 deletions tests/untried/neg/class-of-double-targs.scala

This file was deleted.

4 changes: 0 additions & 4 deletions tests/untried/neg/t0842.check

This file was deleted.

1 change: 0 additions & 1 deletion tests/untried/neg/t0842.scala

This file was deleted.

4 changes: 0 additions & 4 deletions tests/untried/neg/t1701.check

This file was deleted.

1 change: 0 additions & 1 deletion tests/untried/neg/t1701.scala

This file was deleted.

11 changes: 0 additions & 11 deletions tests/untried/neg/t278.check

This file was deleted.

6 changes: 0 additions & 6 deletions tests/untried/neg/t278.scala

This file was deleted.

10 changes: 0 additions & 10 deletions tests/untried/neg/t2918.check

This file was deleted.

3 changes: 0 additions & 3 deletions tests/untried/neg/t2918.scala

This file was deleted.

10 changes: 0 additions & 10 deletions tests/untried/neg/t5093.check

This file was deleted.

3 changes: 0 additions & 3 deletions tests/untried/neg/t5093.scala

This file was deleted.

10 changes: 0 additions & 10 deletions tests/untried/neg/t8219-any-any-ref-equals.check

This file was deleted.

8 changes: 0 additions & 8 deletions tests/untried/neg/t8219-any-any-ref-equals.scala

This file was deleted.

33 changes: 0 additions & 33 deletions tests/untried/neg/warn-unused-imports.check

This file was deleted.

1 change: 0 additions & 1 deletion tests/untried/neg/warn-unused-imports.flags

This file was deleted.

Loading
Loading