/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/lit-tests/err-export.ispc
12 строк
348 B
Aleksei Nurmukhametov
tests/lit-tests: merge lit-tests checking errors
09 фев 2024, 06:08
09 фев 2024, 06:08
7bbe3c6
Код
Авторство
О чём код?
// RUN: not %{ispc} --target=host --nowrap --nostdlib %s -o - 2>&1 | FileCheck %s // CHECK: Error: Illegal to provide "export" qualifier for functions with the same name but different types export void foo() { } export void foo(uniform int x) { } // CHECK: Error: Vector-typed parameter "x" is illegal export void bar(uniform float<3> x) { }