aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/website/overloadGroup.kt
blob: 5bc98e3d40714f8b250c7d006c805d9eda2d50d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * @param spell The text of spell, often distributed on scrolls
 * @return Spell ID for future casts
 */
fun magic(spell: String): Int {

}

/**
 * @param spell Spell ID of previously casted spell
 * @return Spell ID for future casts
 */
fun magic(spell: Int): Int {

}