yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Yong HeDiagnose on use of struct inheritance. (#7419)4ae6e9d8b

master
226 B10 linesraw
1//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):
2
3// Tests that we will diagnose an error on struct inheritance in language 2026 or later.
4
5#lang 2026
6
7struct Base {}
8
9//CHECK: ([[# @LINE+1]]): error 30811:
10struct Derived : Base {}