blob: 1eb463651489a307a282e70cba6ff172b7acdaed [file] [log] [blame]
// Copyright (c) 2013, 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.
// Test handling of unsupported operators.
library unsupported_operators;
class C {
m() {
print(
super === //# 01: syntax error
null);
print(
super !== //# 02: syntax error
null);
}
}
void main() {
new C().m();
new C().m();
print(
"foo" === //# 03: syntax error
null);
print(
"foo" !== //# 04: syntax error
null);
}