blob: 97729b5245878894a54d384fcdc59394ee5b19ec [file] [log] [blame]
// Copyright (c) 2020, 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.
/*library: nnbd=true*/
/*class: Class:Class,Object*/
class Class {
/*member: Class.method:int! Function(int?)!*/
int method(int? i) => i ?? 0;
}
/*class: Interface:Interface,Object*/
abstract class Interface {
/*member: Interface.method:int? Function(int!)!*/
int? method(int i);
}