blob: 3cbc5031a1625251873134bf26c74e73a02f1a3b [file] [log] [blame]
// Copyright (c) 2011, 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("compiler_helper.dart");
const String TEST_ONE = r"""
void foo(bar) {
var toBeRemoved = 1;
if (bar) {
toBeRemoved = 2;
} else {
toBeRemoved = 3;
}
}
""";
main() {
String generated = compile(TEST_ONE, 'foo');
RegExp regexp = const RegExp("toBeRemoved");
Expect.isTrue(!regexp.hasMatch(generated));
}