blob: 398fddca5fb390e6ecb9c69b2db26eb2cf42245a [file] [log] [blame]
// 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.
#include "base/values.h"
void F() {
base::ListValue list;
list.Append(new base::FundamentalValue(1 == 0));
list.Append(new base::FundamentalValue(static_cast<unsigned char>(1.0)));
list.Append(new base::FundamentalValue(double{3}));
list.Append(new base::StringValue("abc"));
}