// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/hash/md5_constexpr.h" namespace base { // Ensure that everything works at compile-time by comparing to a few // reference hashes. constexpr char kMessage0[] = …; static_assert …; static_assert …; constexpr char kMessage1[] = …; static_assert …; static_assert …; } // namespace base