Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Finalize override semantics with dynamic-typed parameters #289

Closed
@vsmenon

Description

@vsmenon

We need to nail down which of these overrides to allow and disallow:

class A {
  void foo(dynamic x) { ... }
  void bar(int y) { ... }
}

class B extends A {
  void foo(int x) { ... }
  void bar(dynamic y) { ... }
}

class C extends B {
  void bar(String y) { ... }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions