Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions FLTTest.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import FLTTest.MathlibCompatibility
7 changes: 7 additions & 0 deletions FLTTest/MathlibCompatibility.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/-

Check that no FLT declarations conflict with Mathlib.

-/
import Mathlib
import FLT
5 changes: 5 additions & 0 deletions lakefile.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name = "FLT"
defaultTargets = ["FLT"]
lintDriver = "batteries/runLinter"
testDriver = "FLTTest"

[leanOptions]
pp.unicode.fun = true # pretty-prints `fun a ↦ b`
Expand All @@ -24,3 +25,7 @@ git = "https://github.com/PatrickMassot/checkdecls.git"
[[lean_lib]]
name = "FLT"
globs = ["FLT", "FermatsLastTheorem"]

[[lean_lib]]
name = "FLTTest"
globs = ["FLTTest.+"] # Build all files in the directory `FLTTest`.
Loading