mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-02-08 21:35:47 +00:00
Disable underscore_imports
Builds with beta now!
This commit is contained in:
parent
f28e8c1be5
commit
46c55a1e5b
2 changed files with 1 additions and 3 deletions
|
@ -1,5 +1,3 @@
|
||||||
#![feature(underscore_imports)]
|
|
||||||
|
|
||||||
mod implementation;
|
mod implementation;
|
||||||
mod queries;
|
mod queries;
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
use crate::implementation::DatabaseImpl;
|
use crate::implementation::DatabaseImpl;
|
||||||
use crate::queries::Database;
|
use crate::queries::Database;
|
||||||
use salsa::Database as _;
|
use salsa::Database as _Database;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn memoized_twice() {
|
fn memoized_twice() {
|
||||||
|
|
Loading…
Reference in a new issue