summaryrefslogtreecommitdiff
path: root/test cases/rust/31 rust.workspace package/subprojects/hello-1.0/src/lib.rs
blob: 47346350bd215344b6fc27c2fc6e4c7554f05e48 (plain)
1
2
3
4
5
6
7
8
9
10
pub fn greet() -> &'static str
{
    "hello world"
}

#[cfg(feature = "goodbye")]
pub fn farewell() -> &'static str
{
    "goodbye"
}