blob: 11265762a8c96aaee5bdab7ef7c00f9c77fa2e52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// extension-import-helper.slang
//TEST_IGNORE_FILE:
public interface IThing
{
public float getValue();
}
public extension float : IThing
{
public float getValue() { return this; }
}
|