We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f3c5d0 commit 780bceeCopy full SHA for 780bcee
src/features.rs
@@ -289,6 +289,7 @@ mod test {
289
);
290
}
291
292
+ #[cfg(test)]
293
fn test_target(target_str: &str, target: RustTarget) {
294
let target_string: String = target.into();
295
assert_eq!(target_str, target_string);
src/ir/analysis/mod.rs
@@ -265,6 +265,7 @@ mod tests {
265
struct Graph(HashMap<Node, Vec<Node>>);
266
267
impl Graph {
268
269
fn make_test_graph() -> Graph {
270
let mut g = Graph::default();
271
g.0.insert(Node(1), vec![Node(3)]);
0 commit comments