blob: 0dfe1af050accf102a4fbb3fb484825183f1d4a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// 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/metrics/histogram_macros.h"
namespace base {
#if defined(NCTEST_DIFFERENT_ENUM) // [r"\|sample\| and \|boundary\| shouldn't be of different enums"]
void WontCompile() {
enum TypeA { A };
enum TypeB { B };
UMA_HISTOGRAM_ENUMERATION("", A, B);
}
#endif
} // namespace base
|