blob: 038adc30a9fb8aa2bb74c85740ef52f377245c7e [file] [log] [blame]
mistergc2e75482017-09-19 16:54:40 -04001// Copyright 2017 The Abseil Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
nik727338b70432019-03-08 10:27:53 -05007// https://www.apache.org/licenses/LICENSE-2.0
mistergc2e75482017-09-19 16:54:40 -04008//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Abseil Teamcf1db732018-01-24 11:58:42 -080015#include "absl/base/internal/inline_variable_testing.h"
mistergc2e75482017-09-19 16:54:40 -040016
17namespace absl {
Abseil Team1e39f862019-12-10 09:03:32 -080018ABSL_NAMESPACE_BEGIN
Abseil Teamcf1db732018-01-24 11:58:42 -080019namespace inline_variable_testing_internal {
mistergc2e75482017-09-19 16:54:40 -040020
Abseil Teamcf1db732018-01-24 11:58:42 -080021const Foo& get_foo_b() { return inline_variable_foo; }
mistergc2e75482017-09-19 16:54:40 -040022
Abseil Teamcf1db732018-01-24 11:58:42 -080023const int& get_int_b() { return inline_variable_int; }
24
25} // namespace inline_variable_testing_internal
Abseil Team1e39f862019-12-10 09:03:32 -080026ABSL_NAMESPACE_END
mistergc2e75482017-09-19 16:54:40 -040027} // namespace absl