-
Notifications
You must be signed in to change notification settings - Fork 423
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
Showing
22 changed files
with
191 additions
and
125 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
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
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
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
45 changes: 20 additions & 25 deletions
45
tests/codegen/fail/interface/struct/attr_cyclic_impl.stderr
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,27 +1,22 @@ | ||
error[E0391]: cycle detected when expanding type alias `Node1Value` | ||
--> fail/interface/struct/attr_cyclic_impl.rs:3:46 | ||
| | ||
3 | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
| ^^^^^^^^^^ | ||
| | ||
--> fail/interface/struct/attr_cyclic_impl.rs:3:46 | ||
| | ||
3 | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
| ^^^^^^^^^^ | ||
| | ||
note: ...which requires expanding type alias `Node2Value`... | ||
--> fail/interface/struct/attr_cyclic_impl.rs:8:46 | ||
| | ||
8 | #[graphql_interface(impl = Node1Value, for = Node1Value)] | ||
| ^^^^^^^^^^ | ||
= note: ...which again requires expanding type alias `Node1Value`, completing the cycle | ||
= note: type aliases cannot be recursive | ||
= help: consider using a struct, enum, or union instead to break the cycle | ||
= help: see <https://doc.rust-lang.org/reference/types.html#recursive-types> for more information | ||
note: cycle used when collecting item types in top-level module | ||
--> fail/interface/struct/attr_cyclic_impl.rs:1:1 | ||
| | ||
1 | / use juniper::graphql_interface; | ||
2 | | | ||
3 | | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
4 | | struct Node1 { | ||
... | | ||
12 | | | ||
13 | | fn main() {} | ||
| |____________^ | ||
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information | ||
--> fail/interface/struct/attr_cyclic_impl.rs:8:46 | ||
| | ||
8 | #[graphql_interface(impl = Node1Value, for = Node1Value)] | ||
| ^^^^^^^^^^ | ||
= note: ...which again requires expanding type alias `Node1Value`, completing the cycle | ||
= note: type aliases cannot be recursive | ||
= help: consider using a struct, enum, or union instead to break the cycle | ||
= help: see <https://doc.rust-lang.org/reference/types.html#recursive-types> for more information | ||
note: cycle used when computing type of `<impl at $DIR/fail/interface/struct/attr_cyclic_impl.rs:3:1: 3:58>` | ||
--> fail/interface/struct/attr_cyclic_impl.rs:3:1 | ||
| | ||
3 | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information | ||
= note: this error originates in the attribute macro `graphql_interface` (in Nightly builds, run with -Z macro-backtrace for more info) |
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
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,27 +1,22 @@ | ||
error[E0391]: cycle detected when expanding type alias `Node1Value` | ||
--> fail/interface/trait/cyclic_impl.rs:3:46 | ||
| | ||
3 | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
| ^^^^^^^^^^ | ||
| | ||
--> fail/interface/trait/cyclic_impl.rs:3:46 | ||
| | ||
3 | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
| ^^^^^^^^^^ | ||
| | ||
note: ...which requires expanding type alias `Node2Value`... | ||
--> fail/interface/trait/cyclic_impl.rs:8:46 | ||
| | ||
8 | #[graphql_interface(impl = Node1Value, for = Node1Value)] | ||
| ^^^^^^^^^^ | ||
= note: ...which again requires expanding type alias `Node1Value`, completing the cycle | ||
= note: type aliases cannot be recursive | ||
= help: consider using a struct, enum, or union instead to break the cycle | ||
= help: see <https://doc.rust-lang.org/reference/types.html#recursive-types> for more information | ||
note: cycle used when collecting item types in top-level module | ||
--> fail/interface/trait/cyclic_impl.rs:1:1 | ||
| | ||
1 | / use juniper::graphql_interface; | ||
2 | | | ||
3 | | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
4 | | trait Node1 { | ||
... | | ||
12 | | | ||
13 | | fn main() {} | ||
| |____________^ | ||
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information | ||
--> fail/interface/trait/cyclic_impl.rs:8:46 | ||
| | ||
8 | #[graphql_interface(impl = Node1Value, for = Node1Value)] | ||
| ^^^^^^^^^^ | ||
= note: ...which again requires expanding type alias `Node1Value`, completing the cycle | ||
= note: type aliases cannot be recursive | ||
= help: consider using a struct, enum, or union instead to break the cycle | ||
= help: see <https://doc.rust-lang.org/reference/types.html#recursive-types> for more information | ||
note: cycle used when computing type of `<impl at $DIR/fail/interface/trait/cyclic_impl.rs:3:1: 3:58>` | ||
--> fail/interface/trait/cyclic_impl.rs:3:1 | ||
| | ||
3 | #[graphql_interface(impl = Node2Value, for = Node2Value)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information | ||
= note: this error originates in the attribute macro `graphql_interface` (in Nightly builds, run with -Z macro-backtrace for more info) |
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
Oops, something went wrong.