blob: 28a8eccd50351b9b8f450936f53374c91a93b988 [file] [log] [blame]
// implicit cast from int to float in struct initializer should fail
struct Foo {
float bar;
};
void main() {
Foo foo = Foo(1);
}