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

Objects with readonly fields can assigned to objects without having readonly modifier #16080

Closed
cevek opened this issue May 25, 2017 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@cevek
Copy link

cevek commented May 25, 2017

TypeScript Version: 2.4.0-dev.20170519

Code

interface FooReadonly {
    readonly foo: number;
}

interface Foo {
    foo: number;
}
let y:FooReadonly = {foo: 1};
let x:Foo = y;
x.foo = 2;

Expected behavior:
Should throw an error

Actual behavior:
No error

@ghost
Copy link

ghost commented May 25, 2017

Duplicate of #13347

@ghost ghost added the Duplicate An existing issue was already created label May 25, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Jun 9, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed Jun 9, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

2 participants