Sign in
fuchsia
/
fuchsia
/
cfef5042b7b9976bc7e0ed8c11f005ee41d1b7b9
/
.
/
src
/
sys
/
build
/
tests
/
two_plus_two.rs
blob: e4a2eb2786b32839ec0503945104119ad8bcf039 [
file
] [
log
] [
blame
]
// Copyright 2019 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.
#[
cfg
(
test
)]
mod
tests
{
#[
test
]
fn
two_plus_two
()
{
assert_eq
!(
2
+
2
,
4
);
}
}