blob: a36baa9380c3257c7a70641afc639bf2b16efdeb [file] [log] [blame]
// Copyright (c) 2018, 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.
import 'package:expect/expect.dart';
/*element: main:[null]*/
main() {
trustParameters();
}
////////////////////////////////////////////////////////////////////////////////
// Test that we trust the explicit type of a parameter with
// --trust-type-annotations.
////////////////////////////////////////////////////////////////////////////////
/*element: _trustParameters:[exact=JSUInt31]*/
_trustParameters(
int
/*ast.[exact=JSUInt31]*/
/*kernel.[exact=JSUInt31]*/
/*strong.Union([exact=JSString], [exact=JSUInt31])*/
i) {
return i;
}
/*element: trustParameters:[null]*/
trustParameters() {
dynamic f = _trustParameters;
Expect.equals(0, f(0));
Expect.throws(/*[null|subclass=Object]*/ () => f('foo'));
}