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.
2 parents 407ab79 + 8833148 commit 9a89e63Copy full SHA for 9a89e63
crates/test-crate-a/src/lib.rs
@@ -24,6 +24,11 @@ pub fn fix_a1() -> bool {
24
}
25
// Update to test-crate-a
26
27
+// Phase 3 Test 3.2: New feature added in monorepo
28
+pub fn phase3_feature() -> &'static str {
29
+ "This is a new feature from Phase 3 testing"
30
+}
31
+
32
#[cfg(test)]
33
mod tests {
34
use super::*;
crates/test-crate-b/src/lib.rs
@@ -39,3 +39,5 @@ pub fn fix_b1() -> bool {
39
true
40
41
pub fn sync_feature() -> &'static str { "Synced from monorepo" }
42
+pub fn from_split_v2() -> &'static str { "Modified in split repo }
43
+// Split repo change
0 commit comments