43cf49a717
BUG= R=dmitryas@google.com Review-Url: https://codereview.chromium.org/2984903002 .
22 lines
476 B
Dart
22 lines
476 B
Dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/// Test program that creates an object by invoking a constor without
|
|
/// initializers.
|
|
main() {
|
|
var objA = new A(37, 'test');
|
|
print(objA.a);
|
|
print(objA.b);
|
|
}
|
|
|
|
class A {
|
|
int a;
|
|
String b;
|
|
|
|
A(int a, String b) {
|
|
this.a = a;
|
|
this.b = b;
|
|
}
|
|
}
|