blob: cea30c8134cc9014f8cb6d21c62cb6ac6eff9925 [file] [log] [blame]
// Copyright (c) 2022, 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.
class metadata<T> {
const metadata();
}
// This is a syntax error because the <int> means there must be an argument list
// after it, but the NO_SPACE in metadatum prevents it from being parsed as such
// and the result is an error.
@metadata<int> (int, int) a = (42, 42);