blob: c811623d88f82f575e3ba40ae34336f7f09ac7fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):
// Tests that we will diagnose a warning on struct inheritance being unstable
// before Slang 2026.
#lang 2025
struct Base {}
//CHECK: ([[# @LINE+1]]): warning 30816:
struct Derived : Base {}
struct Base1 {}
|