summaryrefslogtreecommitdiff
path: root/tests/language-feature/extensions/extension-import-helper.slang
blob: c1a65264587115502755cd6013418185f4206d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// extension-import-helper.slang

//TEST_IGNORE_FILE:

interface IThing
{
	float getValue();
}

extension float : IThing
{
	float getValue() { return this; }
}