// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// The explicit `extern crate` will catch if a GN target specifies conflicting
// dependencies.
//
// When libraries are included implicitly from the command line, rustc seems to
// silently pick the first one that matches. On the other hand with an explicit
// "extern crate" directive, which tells rustc to link a dependency no matter
// what, rustc will see the conflict.
extern crate transitive_dep;
import!
pub use say_foo;
pub use say_foo_directly;
pub use say_something;
pub extern "C"