blob: 10c84e080b5fdf456c68cede7c4a409e66cb4f42 [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.
/// @assertion If element is an ifElement with one element, p1, and no "else"
/// element:
/// ...
/// If the inferred set element type of e1 is S1 and the inferred set element
/// type of e2 is S2 then the inferred set element type of element is the least
/// upper bound of S1 and S2.
///
/// @description Checks that if the inferred set element type of e1 is S1 and the
/// inferred set element type of e2 is S2 then the inferred set element type of
/// element is the least upper bound of S1 and S2.
/// @author sgrekhov@unipro.ru
import "../../Utils/expect.dart";
class A {}
class B extends A {}
class C extends B {}
main() {
var i = 1;
var set1 = {
if (i > 0) 1 else 1.1,
};
Expect.isTrue(set1 is Set<num>);
Expect.isFalse(set1 is Set<int>);
Expect.isFalse(set1 is Set<double>);
Expect.runtimeIsType<Set<Object>>(set1);
Expect.runtimeIsNotType<Set<int>>(set1);
Expect.runtimeIsNotType<Set<double>>(set1);
var set2 = {
"",
if (i > 0) 1 else 1.1,
};
Expect.isTrue(set2 is Set<Object>);
Expect.isFalse(set2 is Set<String>);
Expect.isFalse(set2 is Set<num>);
Expect.runtimeIsType<Set<Object>>(set2);
Expect.runtimeIsNotType<Set<String>>(set2);
Expect.runtimeIsNotType<Set<double>>(set2);
var set3 = {
new C(),
if (i > 0) new B() else new A()
};
Expect.isTrue(set3 is Set<A>);
Expect.isFalse(set3 is Set<B>);
Expect.runtimeIsType<Set<A>>(set3);
Expect.runtimeIsNotType<Set<B>>(set3);
}