fixup! [M120 Migration] Notify media device state to webbrowser
[platform/framework/web/chromium-efl.git] / base / cxx20_is_constant_evaluated_unittest.cc
1 // Copyright 2022 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/cxx20_is_constant_evaluated.h"
6
7 #include "testing/gtest/include/gtest/gtest.h"
8
9 namespace base {
10
11 TEST(Cxx20IsConstantEvaluated, Basic) {
12   static_assert(is_constant_evaluated(), "");
13   EXPECT_FALSE(is_constant_evaluated());
14 }
15
16 }  // namespace base