blob: 5072d7b165540e5e98e2769e15a28a35a4d0cf5c [file] [log] [blame]
// Copyright (c) 2017, 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.
// @dart = 2.9
// Library tag to be able to run in html test framework.
library float32x4_static_test;
import 'dart:typed_data';
main() {
var str = "foo";
/*@compile-error=unspecified*/ new Float32x4(str, 2.0, 3.0, 4.0);
}