mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
14 lines
252 B
C++
14 lines
252 B
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibTest/TestCase.h>
|
|
|
|
#include <AK/Badge.h>
|
|
|
|
TEST_CASE(should_provide_underlying_type)
|
|
{
|
|
static_assert(IsSame<int, Badge<int>::Type>);
|
|
}
|