diff options
| author | Pierre-Marie Pédrot | 2018-11-19 09:39:59 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2018-11-19 09:39:59 +0100 |
| commit | ecfbeaa62f9d8bd4dc4600cf39df2262af718313 (patch) | |
| tree | 4cdf321ef5bdfdb9eb88c9e6ff6e326011512255 /test-suite | |
| parent | 1d577b97ce976adc4b2ab7f9b7bd1cf228087b9b (diff) | |
| parent | 1310a684c8dbcbf3c94022c8e9b6cec3bf092e3d (diff) | |
Merge PR #8451: Print Universes Subgraph
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/output/PrintUnivsSubgraph.out | 5 | ||||
| -rw-r--r-- | test-suite/output/PrintUnivsSubgraph.v | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/test-suite/output/PrintUnivsSubgraph.out b/test-suite/output/PrintUnivsSubgraph.out new file mode 100644 index 0000000000..c42e15e4e8 --- /dev/null +++ b/test-suite/output/PrintUnivsSubgraph.out @@ -0,0 +1,5 @@ +Prop < Set +Set < i + < j +i < j + diff --git a/test-suite/output/PrintUnivsSubgraph.v b/test-suite/output/PrintUnivsSubgraph.v new file mode 100644 index 0000000000..ec9cf44d4f --- /dev/null +++ b/test-suite/output/PrintUnivsSubgraph.v @@ -0,0 +1,9 @@ + +Universes i j k l. + +Definition foo : Type@{j} := Type@{i}. + +Definition baz : Type@{k} := Type@{l}. + +Print Universes Subgraph(i j). +(* should print [i < j], not [l < k] (and not prelude universes) *) |
