We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$ cat > fisk.dart int x = 89;
class Foo { int x = 42; }
class Bar extends Foo { m() => x; }
main() { print(new Bar().m()); } $ ./xcodebuild/Release_ia32/dart fisk.dart 42
That's the wrong answer. It's supposed to print 89.
See issue #1180.
The text was updated successfully, but these errors were encountered:
Set owner to @mhausner.
Sorry, something went wrong.
Added Accepted label.
This comment was originally written by @mhausner
Currently testing a fix.
Added Started label.
This is fixed in cl 6698.
Added Fixed label.
No branches or pull requests
$ cat > fisk.dart
int x = 89;
class Foo {
int x = 42;
}
class Bar extends Foo {
m() => x;
}
main() {
print(new Bar().m());
}
$ ./xcodebuild/Release_ia32/dart fisk.dart
42
That's the wrong answer. It's supposed to print 89.
See issue #1180.
The text was updated successfully, but these errors were encountered: