1 /** 2 * Performs an action on x. 3 * 4 * This is a long description. 5 * @param x the int value to perform the action on. 6 */ fnull7fun f(x: Int) { } 8 9 /** 10 * Performs an action on x. 11 * 12 * This is a long description. 13 * @param x the string value to perform the action on. 14 */ fnull15fun f(x: String) { } 16