blob: 403b8312c7d6b494ce479d45e661ced2176588df [file] [log] [blame]
// Expectation for test:
// // Method to test: function(foo)
// import 'package:expect/expect.dart';
//
// @NoInline() foo(a) => a ~/ 13;
//
// main() {
// print(foo.toString());
// print(foo(5));
// print(foo(100));
// }
function(a) {
return a / 13 | 0;
}