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

Exporting this.xxx in this compiles without warning #22147

Closed
EugeneFlesselle opened this issue Dec 5, 2024 · 2 comments · Fixed by #22545
Closed

Exporting this.xxx in this compiles without warning #22147

EugeneFlesselle opened this issue Dec 5, 2024 · 2 comments · Fixed by #22545
Labels
area:export area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug Spree Suitable for a future Spree
Milestone

Comments

@EugeneFlesselle
Copy link
Contributor

Compiler version

Scala compiler version 3.6.4-RC1-bin-SNAPSHOT-nonbootstrapped-git-bd07317 -- Copyright 2002-2024, LAMP/EPFL

Minimized example

trait P:
  def foo: Int

class A extends P:
  export this.foo

Output

No error or warning.
We generate the following cyclic definition:

class A() extends Object(), Test.P {
  export this.foo
  final def foo: Int = this.foo
}

Expectation

I would expect at least a warning here.

@Gedochao Gedochao added itype:bug area:reporting Error reporting including formatting, implicit suggestions, etc labels Dec 6, 2024
@mbovel mbovel added the Spree Suitable for a future Spree label Jan 12, 2025
@mbovel
Copy link
Member

mbovel commented Feb 2, 2025

This issue was picked for the Scala Issue Spree of tomorrow, Monday, February 3rd. @bracevac and @jan-pieter will be working on it.

@jan-pieter
Copy link
Contributor

Some observations:

  • When the trait P has an implementation for foo you correctly get an error that it is already a member.
  • Support for exporting deferred members was added in this commit
  • The Scala 3 reference only allows exporting when its owner is not a base class of the class containing the export clause

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:export area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug Spree Suitable for a future Spree
Projects
None yet
5 participants