blob: 2cd9a5340a3b40cb6bab1c8e086be22d66ecd129 [file] [log] [blame]
// Method to test: function(foo)
import 'package:expect/expect.dart';
@NoInline() foo(a) => a % 13;
main() {
print(foo(5));
print(foo(-100));
}