You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
508 B
22 lines
508 B
/*
|
|
* Copyright (c) 2018-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
void deref_vector_element_after_lifetime_bad(std::vector<int>& x) {
|
|
int* y = &x[1];
|
|
x.push_back(42);
|
|
std::cout << *y << "\n";
|
|
}
|
|
|
|
void deref_local_vector_element_after_lifetime_bad() {
|
|
std::vector<int> x = {0, 0};
|
|
int* y = &x[1];
|
|
x.push_back(42);
|
|
std::cout << *y << "\n";
|
|
}
|