blob: a140501fb6224243dd1dee7d718c9b7017a6256d [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#![warn(clippy::all)]
mod other;
fn main() {
println!("{}", other::foo());
println!("{}", b::RequiredB::default().0 .0);
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let x = 3.14;
assert!(x > 0.0);
}
}