Skip to content

Commit 9a89e63

Browse files
authored
Merge pull request #3 from loadingalias/rail/sync/test-crate-b/1763010799
Rail/sync/test crate b/1763010799
2 parents 407ab79 + 8833148 commit 9a89e63

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

crates/test-crate-a/src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ pub fn fix_a1() -> bool {
2424
}
2525
// Update to test-crate-a
2626

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+
2732
#[cfg(test)]
2833
mod tests {
2934
use super::*;

crates/test-crate-b/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ pub fn fix_b1() -> bool {
3939
true
4040
}
4141
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

Comments
 (0)