mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 01:04:38 +03:00
15 lines
252 B
C++
15 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>);
|
|
}
|