Closed
Description
This issue was originally filed by andreasschr...@gmail.com
What steps will reproduce the problem?
- Just execute the following
main() {
Example e = new Example('myString');
print('string: $e.test');
}
class Example{
String test;
Example(this.test);
}
What is the expected output? What do you see instead?
Excpected is: "string: myString"
Ootput is: "string: Object.test"
What version of the product are you using? On what operating system?
I used the dartboard at dartlang.org