blob: c4c54fc5660f8dc8c172baed7c3ee0584b67f397 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This is a "No Compile Test" suite.
// https://dev.chromium.org/developers/testing/no-compile-tests
#include "base/containers/enum_set.h"
namespace base {
namespace {
size_t LargeSparseEnum() {
enum class TestEnumSparse {
TEST_1 = 1,
TEST_MIN = 1,
TEST_50 = 50,
TEST_100 = 100,
TEST_MAX = TEST_100,
};
using TestEnumSparseSet = EnumSet<TestEnumSparse, TestEnumSparse::TEST_MIN,
TestEnumSparse::TEST_MAX>;
// TestEnumSparseSet::All() does not compile as constexpr because there are
// more than 64 possible values.
constexpr auto set = TestEnumSparseSet::All(); // expected-error {{constexpr variable 'set' must be initialized by a constant expression}}
return set.Size();
}
} // namespace
} // namespace base