fix: duplicate namespace prefix

This commit is contained in:
François G. Dorais 2021-05-31 06:52:12 -04:00 committed by Sebastian Ullrich
parent 744423f25a
commit 29dc5c5b1b

View file

@ -160,7 +160,7 @@ def toNat : Int → Nat
def natMod (m n : Int) : Nat := (m % n).toNat
protected def Int.pow (m : Int) : Nat → Int
protected def pow (m : Int) : Nat → Int
| 0 => 1
| succ n => Int.pow m n * m