函数调用在以下情况可以使用中缀符。
// 定义Int类的扩展函数 infix fun Int.shl(x: Int): Int {}
// 调用使用infix注解的扩展函数 1 shl 2 1.shl(2)