/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/cxx-api/tests/snapshots/should_qualify_function_args/test.h
20 строк
389 B
Jakub Piasecki
Qualify type arguments based on scope context (#55697)
25 фев 2026, 22:16
25 фев 2026, 22:16
f013533
Код
Авторство
О чём код?
/* * 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 Param {}; struct Container { void doSomething(Param p); void doConst(const Param &p); void doMultiple(Param a, Param b, int x); }; } // namespace test