You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// copied code#![allow(unused)]fnmain(){pubfnadd_two(a:i32) -> i32{internal_adder(a,2)}fninternal_adder(a:i32,b:i32) -> i32{
a + b
}#[cfg(test)]mod tests {usesuper::*;#[test]fninternal(){assert_eq!(4, internal_adder(2,2));// ^^^^^^^^^^^^^^// error[E0425]: cannot find function `internal_adder` in this scope}}}
The text was updated successfully, but these errors were encountered:
Listing 11-12のコピーボタンを押下するとコンパイルが通らないコード (Playground) が出力されるようです。
The text was updated successfully, but these errors were encountered: