/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/cxx-api/manual_test/code/test.h
23 строки
361 B
Jakub Piasecki
Add basic test cases and parser implementation (#55641)
25 фев 2026, 12:12
25 фев 2026, 12:12
25e4025
Код
Авторство
О чём код?
/* * 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 facebook { namespace react { enum class Enum { A, B, }; void test(react::Enum e = Enum::A); } // namespace react } // namespace facebook