mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 15:17:07 +00:00
7 lines
59 B
Dart
7 lines
59 B
Dart
class Foo {}
|
|
|
|
set foo(x) {}
|
|
|
|
main() {
|
|
foo = new Foo();
|
|
}
|