13 lines
192 B
Plaintext
13 lines
192 B
Plaintext
// Test that computeDefaultStrings is set correctly.
|
|
|
|
newtype TUnit = MkUnit()
|
|
|
|
class Unit extends TUnit {
|
|
Unit() { this = MkUnit() }
|
|
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Unit u
|
|
select u
|