/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/cxx-api/tests/snapshots/should_handle_template_variable/test.h
20 строк
375 B
Dawid Małecki
Handle template variables in the API snapshot (#56068)
18 мар 2026, 19:29
18 мар 2026, 19:29
882dbe0
Код
Авторство
О чём код?
/* * 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 { template <typename T> struct Strct { static const Strct<T> VALUE; }; template <typename T> const Strct<T> Strct<T>::VALUE = {}; } // namespace test