blob: 6a8682a6b44d701bc5a1f26ba23e9ff1b524ef56 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <iostream>
#include <vector>
int main() {
std::vector<std::string> v(10);
v[4] = "foo";
v.back() = "bar";
std::cerr << &v << " (" << &v[4] << "): " << v[4] << '\n';
std::cerr << "bye" << v.size() << "\n";
}