4946f55290
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
17 lines
260 B
Text
17 lines
260 B
Text
import data.nat
|
|
|
|
section foo
|
|
parameter A : Type
|
|
definition id (a : A) := a
|
|
parameter a : nat
|
|
check _root_.id nat a
|
|
end foo
|
|
|
|
namespace n1
|
|
section foo
|
|
parameter A : Type
|
|
definition id (a : A) := a
|
|
parameter a : nat
|
|
check n1.id _ a
|
|
end foo
|
|
end n1
|