blob: 7ccb3b48e85b04652e92035f47fa8053d7600a6a [file] [log] [blame]
use googletest::gtest;
use protobuf::__internal;
#[gtest]
#[allow(clippy::unit_cmp)]
fn test_no_internal_access() {
// This test is to ensure that the `__internal` is 'blocked' by instead being a
// unit type instead of a module.
assert_eq!(__internal, ());
}