blob: c9e8ee3c2e22fe8b6fd1231bb2d87ba4c09e1973 [file] [log] [blame]
/*
* Copyright (c) 2019, 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.
*/
/**
* @author sgrekhov@unipro.ru
*/
library opted_in_aliases_lib;
class A {
}
typedef AAliasNonNullable = A;
typedef AAliasNullable = A?;
typedef StringAliasNonNullable = String;
typedef StringAliasNullable = String?;
typedef IntAliasNonNullable = int;
typedef IntAliasNullable = int?;
typedef NeverAlias = Never;