summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/interfaces/interface-extension.slang
blob: b63b454abdcad57f0651341d42317c39eba6b826 (plain)
1
2
3
4
5
6
7
8
9
10
//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):-target cpp -stage compute -entry main -disable-specialization

interface IFoo{}


// CHECK: ([[# @LINE+1]]): error 30852
extension IFoo
{
    int f() { return 0; }
}