blob: b322ba0c2fbe4e4aa54225dbe37353939c256daa [file] [log] [blame]
// Expectation for test:
// // Method to test: function(foo)
// import 'package:expect/expect.dart';
//
// @NoInline() foo(a) => a ~/ 13;
//
// main() {
// print(foo(5));
// print(foo(8000000000));
// }
function(a) {
return C.JSInt_methods.$tdiv(a, 13);
}