1/*
2 * Copyright (c) 2021, the SerenityOS developers.
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <LibTest/TestCase.h>
8
9#include <AK/Badge.h>
10
11TEST_CASE(should_provide_underlying_type)
12{
13 static_assert(IsSame<int, Badge<int>::Type>);
14}