-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e9ade9
commit 2d32340
Showing
2 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
- Block is a valid expression | ||
- std::test | ||
- noisdoc | ||
Documentation testing: https://doc.rust-lang.org/rust-by-example/testing/doc_testing.html | ||
- Explicit type args on constructors Option<Int>::Some(value: 5) | ||
Requires changes to the parser | ||
documentation testing: https://doc.rust-lang.org/rust-by-example/testing/doc_testing.html | ||
- orphan instances: https://wiki.haskell.org/index.php?title=Orphan_instance | ||
should impls be allowed only when at least one of (A, B) (in impl A for B) is defined in the current package? | ||
possible solutions: | ||
* disallow, throw error when detected in impl definition | ||
* allow, throw error when two dependency packages provide conflicting impls | ||
* allow, give an interface to prioritize one conflicting impl over another | ||
* allow, make orphan impls local to the current package | ||
- causes coherence problems: https://xnning.github.io/papers/coherence-class.pdf |