43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
// Copyright 2017 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.
|
|
// http://dev.chromium.org/developers/testing/no-compile-tests
|
|
|
|
#include "base/feature_list.h"
|
|
#include "base/metrics/field_trial_params.h"
|
|
|
|
[[maybe_unused]] constexpr base::Feature kFeature{
|
|
"NoCompileFeature", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
|
enum Param { FOO, BAR };
|
|
|
|
#if defined(NCTEST_NO_PARAM_TYPE) // [r"too few template arguments"]
|
|
|
|
constexpr base::FeatureParam<> kParam{
|
|
&kFeature, "Param"};
|
|
|
|
#elif defined(NCTEST_VOID_PARAM_TYPE) // [r"unsupported FeatureParam<> type"]
|
|
|
|
constexpr base::FeatureParam<void> kParam{
|
|
&kFeature, "Param"};
|
|
|
|
#elif defined(NCTEST_INVALID_PARAM_TYPE) // [r"unsupported FeatureParam<> type"]
|
|
|
|
constexpr base::FeatureParam<size_t> kParam{
|
|
&kFeature, "Param", 1u};
|
|
|
|
#elif defined(NCTEST_ENUM_NULL_OPTIONS) // [r"candidate template ignored: could not match"]
|
|
|
|
constexpr base::FeatureParam<Param> kParam{
|
|
&kFeature, "Param", FOO, nullptr};
|
|
|
|
#elif defined(NCTEST_ENUM_EMPTY_OPTIONS) // [r"zero-length arrays are not permitted"]
|
|
|
|
constexpr base::FeatureParam<Param>::Option kParamOptions[] = {};
|
|
constexpr base::FeatureParam<Param> kParam{
|
|
&kFeature, "Param", FOO, &kParamOptions};
|
|
|
|
#endif
|