blob: a14df7dffa10463d1af2bb62e5e12a03ce3bd6a5 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general_nnbd_opt_out/issue38938.dart:9:7: Error: 'v' is already declared in this scope.
// int v;
// ^
// pkg/front_end/testcases/general_nnbd_opt_out/issue38938.dart:8:7: Context: Previous declaration of 'v'.
// int v;
// ^
//
// pkg/front_end/testcases/general_nnbd_opt_out/issue38938.dart:10:10: Error: Can't use 'v' because it is declared more than once.
// A(this.v);
// ^
//
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int* v = null;
constructor •(core::int* v) self::A*
: final dynamic #t1 = invalid-expression "pkg/front_end/testcases/general_nnbd_opt_out/issue38938.dart:10:10: Error: Can't use 'v' because it is declared more than once.
A(this.v);
^", super core::Object::•()
;
constructor second() → self::A*
: super core::Object::•()
;
}