Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/query-group-macro/tests/supertrait.rs')
-rw-r--r--crates/query-group-macro/tests/supertrait.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/crates/query-group-macro/tests/supertrait.rs b/crates/query-group-macro/tests/supertrait.rs
deleted file mode 100644
index 63a5dbd16c..0000000000
--- a/crates/query-group-macro/tests/supertrait.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-use query_group_macro::query_group;
-
-#[salsa_macros::db]
-pub trait SourceDb: salsa::Database {
- /// Text of the file.
- fn file_text(&self, id: usize) -> String;
-}
-
-#[query_group]
-pub trait RootDb: SourceDb {
- #[salsa::transparent]
- fn parse(&self, id: usize) -> String;
-}
-
-fn parse(db: &dyn RootDb, id: usize) -> String {
- // this is the test: does the following compile?
- db.file_text(id);
-
- String::new()
-}