/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/cxx-api/tests/snapshots/should_handle_array_param/test.h
21 строка
413 B
Jakub Piasecki
Fix indexed access in function arguments (#55645)
25 фев 2026, 22:16
25 фев 2026, 22:16
269a2ee
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once namespace test { struct PropNameID {}; struct Node { template <size_t N> static std::vector<PropNameID> names(PropNameID (&&propertyNames)[N]); void setArray(int (&arr)[10]); }; } // namespace test