about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-06-15 09:41:14 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-07-07 13:13:18 +0000
commit4c99872efe97c8e6183dfc9b729bc3a2903ac40b (patch)
tree99a7f59f160ba538e25b6647047cfec77998c8b0 /compiler/rustc_trait_selection
parent921f669749a57ab5936721fdd93b2da57b581381 (diff)
downloadrust-4c99872efe97c8e6183dfc9b729bc3a2903ac40b.tar.gz
rust-4c99872efe97c8e6183dfc9b729bc3a2903ac40b.zip
Require TAITs to be mentioned in the signatures of functions that register hidden types for them
Diffstat (limited to 'compiler/rustc_trait_selection')
-rw-r--r--compiler/rustc_trait_selection/src/traits/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/mod.rs b/compiler/rustc_trait_selection/src/traits/mod.rs
index e2ee347b639..1af8323b6e9 100644
--- a/compiler/rustc_trait_selection/src/traits/mod.rs
+++ b/compiler/rustc_trait_selection/src/traits/mod.rs
@@ -11,7 +11,7 @@ mod fulfill;
 pub mod misc;
 mod object_safety;
 pub mod outlives_bounds;
-mod project;
+pub mod project;
 pub mod query;
 #[cfg_attr(not(bootstrap), allow(hidden_glob_reexports))]
 mod select;