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; } }